How to change dot's place in fractional number

조회 수: 1 (최근 30일)
Abdulkadir Arslan
Abdulkadir Arslan 2021년 1월 11일
답변: Daniel Pollard 2021년 1월 11일
Hello,
I have a variable x and x is equal to 0.25
I want to change dot's place and make the number 25 instead of 0.25
How to do it ?

채택된 답변

Daniel Pollard
Daniel Pollard 2021년 1월 11일
Multiply by 100?
x1 = 0.25;
x2 = x1 * 100;
disp(x2)
25

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by