problem with fprintf command
显示 更早的评论
i don't get the all values of the respective variable column wise.
Code:
close all
clear all
y = @(x) x.^3-x-11;
x = -10:1:10;
f = y(x);
fprintf('%8s %8s\n','x','f')
fprintf('%8.2f %8.2f\n',x',f')
what is wrong i can't find out. can anyone please help me.
Thanks in advance.
1 个评论
close all
clear all
y = @(x) x.^3-x-11;
x = -10:1:10;
f = y(x);
fprintf('%8s %8s\n','x','f')
fprintf('%8.2f %8.2f\n',[x;f])
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!