Want to truncate an array
Mostrar comentarios más antiguos
Suppose i have an array of [8.5766662529*10^22; 5.354353982*10^22;5.289634*10^22]. Now i want to truncate the array upto 4 decimal and power will remain same how i will do that?
Respuestas (2)
format long g
A = [8.5766662529*10^22; 5.354353982*10^22;5.289634*10^22]
round(A, 4, 'significant')
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!