我是靠谱客的博主 暴躁龙猫,最近开发中收集的这篇文章主要介绍matlab基本函数的输入输出,Matlab函数的基本使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

dd4057e9cf1cda8d6fa58475f62bd316.png

Part 1Matlab函数的基本概念

1.MATLAB的脚本和函数都是包含MATLAB命令的.m文件。

2.脚本没有参数的输入输出,函数有。

3.使用函数,需要一个脚本或者函数召唤它。

1. MATLAB scripts and functions are .m files containing MATLAB commands.

2. The script has no input and output parameters, but the function has.

3. To use a function, you need a script or function to call it.

Part 2查看内嵌函数

如查看平均数函数

Such as viewing the average function

768fa7216d5c6fa21c2ca9da88b7059b.png

27b00ffc6b7c34593c1673b717dec1ac.png

通过上述内嵌函数,我们可以看到函数设置的五个要素:

Through the above embedded function, we can see the five elements of the function setting:

1.函数使用的关键字是function

2.文件名与函数名字是一致的

3.(x,dim,flag)是输入,y是输出

4.dim和flag为局部变量

5.MATLAB需要有找到该函数的路径

1. The keyword used by the function is function

2. The file name is consistent with the function name

3. (x, dim, flag) is input, y is output

4.dim and flag are local variables

5. MATLAB needs a path to find the function

Part 3用户自定义函数

如自定义自由落体位移函数

Such as custom free fall displacement function

47a8944f483f6d97d13d7f571bf30511.png

首先新建脚本,输入函数,保存为与函数名相同名字的文件。

First create a new script, enter the function, and save it as a file with the same name as the function.

1255ea7142bc1be1b55b534487bbecb2.png

注意:元素与元素之间是点乘。

然后就可以调用该函数了。

Note: There is a dot product between elements.

Then you can call the function.

7de1a29a0edcc107f14b36ccced46ab3.png

调用内嵌函数和自定义函数是一致的。例如可以计算两组数据。

Calling built-in functions is consistent with custom functions. For example, two sets of data can be calculated.

cedbc927cf9e1c028740282a0fe28a0f.png

Part 4多输入、多输出函数

如定义下列函数

Such as defining the following function

8f68ccf35d1906a8050402a67b5f8f56.png

71aa18df921b89d9a089f10849bc0f50.png

然后调用函数Then call the function

a74beee651d24801b0238730b7762523.png

我们会发现结果不对,多输入多输出函数的正确使用方法如下:

We will find that the result is wrong. The correct way to use the multiple-input multiple-output function is as follows:

7eb75f922ec61ae024b198845fc9f450.png

Part 5没有input函数

例如,在命令栏输入一个华氏温度,然后计算成摄氏温度。

For example, enter a Fahrenheit temperature in the command bar, and then calculate it to Celsius.

ebcb34646da9db5dbe44db2475f392ef.png

Isempty:判断该函数是否为空

Num2str:将数值转化为字符串

然后运行程序,不停的输入,结果如下:

Isempty: Determine whether the function is empty

Num2str: Convert a value to a string

Then run the program, keep typing, the results are as follows:

af9df7e8206e3482a2238e8de5cfa0b9.png

参考资料:百度百科、B站郭彦甫Matlab教程、谷歌翻译

本文由LearningYard学苑原创,如有侵权,请联系删除。

举报/反馈

最后

以上就是暴躁龙猫为你收集整理的matlab基本函数的输入输出,Matlab函数的基本使用的全部内容,希望文章能够帮你解决matlab基本函数的输入输出,Matlab函数的基本使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部