How to round up all components of a matrix to nearest integer number

조회 수: 13 (최근 30일)
Hi,
Does anyone know how I can round this 3x3 matrix and take the absolute value of all elements :
M=
5.421 -5.532 0.532
-4.223 6.543 9.334
1.976 -5.123 7.872
to this
M=
5 6 1
4 7 9
2 5 8

채택된 답변

Image Analyst
Image Analyst 2019년 4월 14일
M = abs(round(M));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by