how to seperate a number with a decimal point?
how to seperate a number with a decimal point?
(OP)
Float_point := 21.739
Quotient = 21
remainder = .739
How can I have Mathcad seperate this number for me?
I enter Imin and Mathcad will give me two numbers.
Imin := 1.087*10-3
PWM := Imin/50 Imin = 21.739
Q :=
R :=
Quotient = 21
remainder = .739
How can I have Mathcad seperate this number for me?
I enter Imin and Mathcad will give me two numbers.
Imin := 1.087*10-3
PWM := Imin/50 Imin = 21.739
Q :=
R :=





RE: how to seperate a number with a decimal point?
See insert - function - truncation and roundoff - trunc
RE: how to seperate a number with a decimal point?
round(1.723) = 1
mantissa(x):=x-floor(x)
mantissa(1.723)=0.723