This wiki is out of date, use the continuation of this wiki instead

Pow

From FenixWiki

Jump to: navigation, search


Contents

[edit] Definition

FLOAT pow ( <FLOAT base> , <FLOAT power> )

Returns base to the power of power (base^power).

[edit] Parameters

FLOAT base - The base.
FLOAT power - The power.

[edit] Returns

FLOAT : base to the power of power (base^power).

[edit] Example

Program powerful;
Global
    float value1;
    int   value2;
Begin

    write_float(0,0, 0,0,&value1);
    write_int  (0,0,10,0,&value2);

    value1 = pow(2.3,4.6);
    value2 = pow(2  ,3  );

    Repeat
        frame;
    Until(key(_ESC))

End

Used in example: write_float(), write_int(), pow(), key()


Math Functions
Abs() • Acos() • Asin() • Atan() • Cos() • Fget_angle() • Fget_dist() • Get_distx() • Get_disty() • Pow() • Rand() • Rand_seed() • Sin() • Sqrt() • Tan() •
Personal tools