matlab设置初始值
时间: 2023-11-11 15:58:22 浏览: 230
在 MATLAB 中设置初始值,可以使用赋值语句给变量赋初值,例如:
```
x = 1;
y = [2, 3, 4];
z = 'hello';
```
也可以在函数定义时,使用等号赋初值。例如:
```
function [outputArg1,outputArg2] = myFunction(inputArg1,inputArg2)
%MYFUNCTION Summary of this function goes here
% Detailed explanation goes here
if nargin<2
inputArg2 = 0; % 给第二个输入参数设置默认值 0
end
outputArg1 = inputArg1 + inputArg2; outputArg2 = inputArg1 - inputArg2;
end
```
阅读全文