Function that returns value after decimal point?
Ältere Kommentare anzeigen
Is there a function that returns the value after the decimal?
EX:
a = 2.876
function(a) = 0.876
Thank You
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 4 Okt. 2012
Bearbeitet: Azzi Abdelmalek
am 4 Okt. 2012
out=a-fix(a)
%or
A=num2str(a);
out=str2num(['0' A(strfind(A,'.'):end)])
2 Kommentare
Jan
am 4 Okt. 2012
What happens for integer values?
Azzi Abdelmalek
am 4 Okt. 2012
Bearbeitet: Azzi Abdelmalek
am 4 Okt. 2012
a=1
a-fix(a)=0
and
A=num2str(a);
out=str2num(['0' A(strfind(A,'.'):end)])=0
Kategorien
Mehr zu Operators and Elementary Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!