Skip to content
Snippets Groups Projects
Commit ab51e2a7 authored by Eric Noulard's avatar Eric Noulard
Browse files

Add more functions in math.lusi

parent 95763423
No related branches found
No related tags found
No related merge requests found
function pow (x:real; n: real) returns (y: real) prototype C lib m;
function acos (x: real) returns (y: real) prototype C lib m;
function acosh (x: real) returns (y: real) prototype C lib m;
function asin (x: real) returns (y: real) prototype C lib m;
function asinh (x: real) returns (y: real) prototype C lib m;
function atan (x: real) returns (y: real) prototype C lib m;
function sqrt (x: real) returns (y: real) prototype C lib m;
function atan2(x:real; n: real) returns (y: real) prototype C lib m;
function atanh (x: real) returns (y: real) prototype C lib m;
function cbrt (x: real) returns (y: real) prototype C lib m;
function cos (x: real) returns (y: real) prototype C lib m;
function cosh (x: real) returns (y: real) prototype C lib m;
function ceil (x: real) returns (y: real) prototype C lib m;
function erf (x: real) returns (y: real) prototype C lib m;
function fabs (x: real) returns (y: real) prototype C lib m;
function pow (x:real; n: real) returns (y: real) prototype C lib m;
function sin (x: real) returns (y: real) prototype C lib m;
function sinh (x: real) returns (y: real) prototype C lib m;
function sqrt (x: real) returns (y: real) prototype C lib m;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment