Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
how to convert exponentional number into a decimal number
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
dear sir,
Euc_dist =
[ 1.0e+013 *
0.0106 1.9718]
Euc_dist is an example matrix which has the above value. but i dont want 1.0e+013,i m interested only in the remaining value i.e [0.0106 1.9718]how to get it
1 comentario
Respuestas (2)
Azzi Abdelmalek
el 9 de Oct. de 2012
Euc_dist = 1.0e+013 *[ 0.0106 1.9718]
x=Euc_dist/1.0e+013
0 comentarios
Andrei Bobrov
el 9 de Oct. de 2012
a = 1.0e+013 * [ 0.0106 1.9718]
out = a.*10.^-max(floor(log10(a)))
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!