disp命令
-
只能打印多个变量的值
-
打印多个变量时,可以把它们放在一个数组中或结构体中
fprintf命令
-
打印多个变量
-
fpritf(fileID,formatSpec,A1,A2,A3...)
arrayfun(func,A)
- 将func应用于A的每个元素
function y=f(x)
...
end
x = -2:1:2;
y = arrayfun(@f,x);
plot(x,y)
只能打印多个变量的值
打印多个变量时,可以把它们放在一个数组中或结构体中
打印多个变量
fpritf(fileID,formatSpec,A1,A2,A3...)
function y=f(x)
...
end
x = -2:1:2;
y = arrayfun(@f,x);
plot(x,y)