MATLAB: Limit significant figures to 2 significant figures

#limit roundingsig figs

et=abs(((stop-new_cos)/stop)*100);
Say I use the above to solve for a number how would I limit the et variable to 2 significant figures?

Best Answer

Using the round function and the option in: Round Elements to Specified Number of Significant Digits is likely to be more consistent.
Related Question