How can I remove the power of a matrix?
Afficher commentaires plus anciens
say i performed some calculations and the answer was:
A =
1.0e+06 *
0.0001 55 100
0.0002 66 110
0.0003 77 120
0.0004 88 130
how can I remove "1.0e+06 *" and reduce it to its normal form?
Réponse acceptée
Plus de réponses (2)
Mischa Kim
le 12 Mar 2014
Modifié(e) : Mischa Kim
le 12 Mar 2014
Chris C
le 12 Mar 2014
So, the reason Matlab displays data in that manner is to make the best use of the available real estate. However, if you still find the need to express the data in a different manner. Use the Matlab documentation under the title "Format". An example would be...
A = 1.0e+06*[0.0001,55,100;0.0002,66,110;0.0003,77,120;0.0004,88,130];
format long
A =
100 55000000 100000000
200 66000000 110000000
300 77000000 120000000
400 88000000 130000000
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!