How to round numbers in the matrix
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
There is a matrix 3×3 containing numbers from 0 to 1, but each number contains many decimals such as 0.120886554436, 0.0925684799, and so on... How can I round each number in the matrix to three decimals, for example, to make the number as the following 0.121, 0.092,....?
0 Commenti
Risposta accettata
Ghazwan
il 10 Ott 2022
Y = round(X,N)
% For more info: https://www.mathworks.com/help/matlab/ref/round.html
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su NaNs in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!