problem with fprintf command
Show older comments
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 Comment
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])
Accepted Answer
More Answers (0)
Categories
Find more on Data Type Conversion in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!