Clear Filters
Clear Filters

Decimals

2 views (last 30 days)
Salvatore Turino
Salvatore Turino on 26 Jan 2012
Hello.i have a vector that is: C=[1;1.0000;1.0000;1.0000]
how can i see if there is any approssimations?

Accepted Answer

Walter Roberson
Walter Roberson on 26 Jan 2012
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)

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!