Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

how to convert exponentional number into a decimal number

1 visualizzazione (ultimi 30 giorni)
faa nad
faa nad il 9 Ott 2012
Chiuso: MATLAB Answer Bot il 20 Ago 2021
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

Risposte (2)

Azzi Abdelmalek
Azzi Abdelmalek il 9 Ott 2012
Euc_dist = 1.0e+013 *[ 0.0106 1.9718]
x=Euc_dist/1.0e+013

Andrei Bobrov
Andrei Bobrov il 9 Ott 2012
a = 1.0e+013 * [ 0.0106 1.9718]
out = a.*10.^-max(floor(log10(a)))

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by