Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
%DASHBOARD{ section="banner" | ||||||||
Line: 152 to 152 | ||||||||
pi ( -- r ) r is pi, approx. 3.14159274101257324 e ( -- r ) r is e, approx. 2.7182818 | ||||||||
Added: | ||||||||
> > | fnumber (a # -- r u ) convert the specified string by a and # to float r, on success u is 1, otherwise 0
>float (a # -- r ? ) convert the specified string by a and # to float r, on success flag is true | |||||||
f. ( r -- ) display, with a trailing space, the floating-point number r in fixed-point notation fs. ( r -- ) display, with a trailing space, the floating-point number r in scientific notation fe. ( r -- ) display, with a trailing space, the floating-point number r in engineering notation | ||||||||
Line: 165 to 168 | ||||||||
C mathematical functions![]() | ||||||||
Deleted: | ||||||||
< < | fnumber (a # -- r u ) convert the specified string by a and # to float r, on success u is 1, otherwise 0
>float (a # -- r ? ) convert the specified string by a and # to float r, on success flag is true (more robust) | |||||||
fsin ( r1 -- r2 ) r2 is the sine of the radian angle r1 fcos ( r1 -- r2 ) r2 is the cosine of the radian angle r1 ftan ( r1 -- r2 ) r2 is the principal radian angle whose tangent is r1 | ||||||||
Line: 252 to 252 | ||||||||
How to Use | ||||||||
Added: | ||||||||
> > | Calculation of two parallel resistors![]() | |||||||
: f|| ( r1 r2 -- r3) 2dup f* -rot f+ f/ ; 27k 100k f|| fm. 21.3k ok. | ||||||||
Deleted: | ||||||||
< < | 2.2n 47k f* fm. 103u ok. | |||||||
Added: | ||||||||
> > | RC time constant![]() 2.2n 47k f* fm. 103u ok. | |||||||
Added: | ||||||||
> > | Mecrisp-Cube has the word f. defined as an assembler routine in fpu.s![]() ![]() ![]() | |||||||
: f. ( r -- ) \ display, with a trailing space, the floating-point number r in fixed-point notation dup f0< if |