Decimals

조회 수: 4 (최근 30일)
Salvatore Turino
Salvatore Turino 2012년 1월 26일
Hello.i have a vector that is: C=[1;1.0000;1.0000;1.0000]
how can i see if there is any approssimations?

채택된 답변

Walter Roberson
Walter Roberson 2012년 1월 26일
C ~= round(C)
will return 1 for any position that is not an integer.
You may also want to try something like
fprintf('%.99g\n', C)
  댓글 수: 1
Salvatore Turino
Salvatore Turino 2012년 1월 26일
thank you :)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by