Borrar filtros
Borrar filtros

How can you convert a scientific number to decimal?

2 visualizaciones (últimos 30 días)
I have an equation in matlab that gave me this result:
4.1084e+001 -9.6671e+002i
how can I convert it to a decimal number?

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 9 de Ag. de 2013
Editada: Azzi Abdelmalek el 9 de Ag. de 2013
a=4.1084e+001-9.6671e+002i
out=sprintf('%.2f+%.2fi',real(a),imag(a));
out=strrep(out,'+-','-')

Más respuestas (1)

Matt J
Matt J el 9 de Ag. de 2013
If you want MATLAB to display its results differently, use the FORMAT command.

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by