how to calculate %?

조회 수: 1 (최근 30일)
Minh
Minh 2022년 9월 21일
댓글: Image Analyst 2022년 9월 22일
I need to calculate % by dozens of formulas x = (x% 100) / 10 but in MATLAB behind % is a comment?

채택된 답변

Image Analyst
Image Analyst 2022년 9월 21일
Try this:
x = 23;
str = sprintf('%3.3d', x)
fprintf("hundreds :%s\n", str(1));
fprintf(" tens :%s\n", str(2));
fprintf(" units :%s\n", str(3));
x = 456
str = sprintf('%3.3d', x)
fprintf("hundreds :%s\n", str(1));
fprintf(" tens :%s\n", str(2));
fprintf(" units :%s\n", str(3));
  댓글 수: 4
Minh
Minh 2022년 9월 22일
i want to use formula to calculate but you helped me to do a simpler way that's what i asked for.!
Image Analyst
Image Analyst 2022년 9월 22일
OK, then please Accept the best answer and "vote" for the other one.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by