problem with fprintf command
Mostrar comentarios más antiguos
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 comentario
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])
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!