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 日

1 投票

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 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by