上传者: 18272725
|
上传时间: 2021-07-16 12:39:22
|
文件大小: 98B
|
文件类型: M
matlab执行带参数的exe文件,其中函数foo为
function [x,y]=foo(z);
if ischar(z)
z=str2num(z);%由于参数传递都是字符形式,这里必须将其转为数值型
else
z=z;
end
x=2*z; % Omit the semicolon after calculation to display the value on the screen
y=z^2;
disp(y) % Use DISP command to display the value of a variable explicitly