MATLAB2014a中help与参考页中文翻译 Calling Functions



镇场诗:慈心积善,为有缘人做大证明。以身作则,光照大千世界。

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


Calling Functions     调用函数

MATLAB® provides a large number of functions that perform computational tasks. Functions are equivalent to subroutines or methods in other programming languages.

MATLAB有大量的函数去完成各种计算任务。这些函数在其它的程序语言中就相当于子程序或者方法。


To call a function, such as max, enclose its input arguments in parentheses:

我们调用一个函数,比如说max函数吧,我们要把函数处理的对象用括号围起来。

A = [1 3 5];

max(A);

If there are multiple input arguments, separate them with commas:

如果有许多的对象要去用函数解析,那么用逗号分开他们。

B = [10 6 4];

max(A,B);

Return output from a function by assigning it to a variable:

通过指定一个变量去接收函数解析后得到的结果。

maxA = max(A);

When there are multiple output arguments, enclose them in square brackets:

当函数解析后出现很多的输出,那么用方括号把用于接收返回值的变量围起来。

[maxA,location] = max(A);

Enclose any character string inputs in single quotes:

字符串作为函数的输入,可以用单引号围起来。

disp('hello world');

To call a function that does not require any inputs and does not return any outputs, type only the function name:

有些函数是不需要任何输入的,也不没有任何输出的,那么要想调用这些函数,写下函数的名字就可以了。

clc

The clc function clears the Command Window.

Clc函数是用来清空命令行窗口的内容的。



///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


为了让每个新手使用MATLAB这一优秀的软件,所以翻译matlab, 借助了翻译软件和实践时候的经验,愿所有看了这篇翻译的人能得到一些启示。


因为是为了帮助新手入门,所以我努力以人为本,说新手听得懂的语言,绝不一一对译。n(*≧▽≦*)n

如果我的翻译有错误,请指正。我会不断地进步并更新改进翻译的。请务必不吝赐教。在下感激不尽。


感恩众生与使用的软件,金山词霸与microsoft word。


注:此文仅用作科研学习使用。如果我侵犯了您的权益,请告知。看到您的告知后,我将及时作出处理。

此文为原创,未经同意不得转载。所以转载到其他网站前,请询问在下。

你可能感兴趣的:(matlab,中文翻译,新手入门,help与参考页)