How to round numbers in the matrix
조회 수: 13 (최근 30일)
이전 댓글 표시
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
채택된 답변
Ghazwan
2022년 10월 10일
Y = round(X,N)
% For more info: https://www.mathworks.com/help/matlab/ref/round.html
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 NaNs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!