Output result's format?
Mostrar comentarios más antiguos
I am executing a great-script which has inside it another mini-scripts.
Those scripts execute mathematical operations in order to calculate and show results of differente variables.
The issue is that Matlab do show those results correctly but some of the in this strange format:

How can I solve this problem and achieve Matlab giving me the results in a normal format? I think that this doesn`t happen if I execute those mini-scripts separately and individualy. It only happens when I execute the great-script. I also have tried writing
format short
In the head of each mini-script but seems that this didn't fix the issue.
Thanks!
1 comentario
Stephen23
el 6 de Feb. de 2021
The variables EVfiT and EVfiT1 are symbolic or character or possibly some custom class... they are certainly not numeric, so the format command is totally irrelevant.
Respuesta aceptada
Más respuestas (1)
darova
el 30 de En. de 2021
try double
a = 2;
b = 1/sym(a);
c = b/a
double(c)
3 comentarios
Steven Lord
el 31 de En. de 2021
If double doesn't work because the symbolic expression contains a symbolic variable use vpa.
ErikJon Pérez Mardaras
el 4 de Feb. de 2021
Walter Roberson
el 6 de Feb. de 2021
"format" is a command, not a local setting for functions or subroutines.
If you had a
disp('hello')
command inside a function, would you expect the output of the function to disappear from the command window when the function returned? NO -- you would recognize that disp() changes state permanently, rather than disp() being a local setting within the function. Just so, "format" changes are permanent until changed.
Categorías
Más información sobre Operations on Strings 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!