format short and format long
Mostrar comentarios más antiguos
I need to find the relative error between 2 variable, the one in format short and the other in format long. How can I take the same variable, once in short and once in long so I can subtract the two?
1 comentario
This question makes no sense. Numeric data is stored in an array of any of the numeric data types (e.g. single, double, uint32, etc), and is displayed in the command window using the currently specified format (e.g. longg, bank, etc). The format has nothing to do with the precision of calculations, nor anything to do with the precision of stored data. Exactly as the documentation clearly states, format is only relevant to the displaying of data, so the statement "I take the same variable, once in short and once in long so I can subtract the two" is totally meaningless.
Respuesta aceptada
Más respuestas (1)
John D'Errico
el 30 de Dic. de 2016
1 voto
I think perhaps you misunderstand. Format short does not cause a variable to be stored in any format, nor does format long.
The numbers were always stored in the same precision (usually double precision, unless you specified something else like single.)
So the format command is strictly a tool to change how a number as displayed.
Categorías
Más información sobre Logical 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!