Difference between revisions of "KMotionDef - Standard Math Functions"

From Dynomotion

Jump to: navigation, search
(Created Page)
 
(Added Float/Doubles headings)
 
Line 1: Line 1:
These are standard Mathematical Functions, and are only listed here as a quick reference.
+
These are standard C programming Mathematical Functions, and are only listed here as a quick reference.
  
 +
==Functions using Float variables==
 
====sqrtf====
 
====sqrtf====
 
<pre class="brush:c">extern float sqrtf (float x);</pre>
 
<pre class="brush:c">extern float sqrtf (float x);</pre>
Line 53: Line 54:
 
Returns the absolute value of float y, as a float.
 
Returns the absolute value of float y, as a float.
  
 +
==Functions using Double variables==
 
====sqrt====
 
====sqrt====
 
<pre class="brush:c">extern double sqrt (double x);</pre>
 
<pre class="brush:c">extern double sqrt (double x);</pre>

Latest revision as of 16:02, 11 February 2016

These are standard C programming Mathematical Functions, and are only listed here as a quick reference.

Functions using Float variables

sqrtf

1
extern float sqrtf (float x);

Returns the square root of the supplied float x, as a float. x must be greater than 0.

expf

1
extern float expf  (float x);

Returns the exponential of the supplied float x, as a float.

logf

1
extern float logf  (float x);

Returns the natural logarithm of the supplied float x, as a float. x must be greater than 0.

log10f

1
extern float log10f(float x);

Returns the base 10 logarithm of the supplied float x, as a float. x must be greater than 0.

powf

1
extern float powf  (float x, float y);

Returns the x to the power y of the supplied floats x and y, as a float.

sinf

1
extern float sinf  (float x);

Returns the sine of float x, as a float.

cosf

1
extern float cosf  (float x);

Returns the cosine of float x, as a float.

tanf

1
extern float tanf  (float x);

Returns the tangent of float x, as a float.

asinf

1
extern float asinf (float x);

Returns the inverse sine (sin-1) of float x, as a float.

acosf

1
extern float acosf (float x);

Returns the inverse cosine (cos-1) of float x, as a float.

atanf

1
extern float atanf (float x);

Returns the inverse tangent (tan-1) of float x, as a float.

atan2f

1
extern float atan2f(float y, float x);

Returns the inverse tangent of float y over float x (tan-1(X/Y)), as a float.

fast_fabsf

1
extern float fast_fabsf (float y);

Returns the absolute value of float y, as a float.

Functions using Double variables

sqrt

1
extern double sqrt (double x);

exp

1
extern double exp  (double x);

log

1
extern double log  (double x);

log10

1
extern double log10(double x);

pow

1
extern double pow  (double x, double y);

sin

1
extern double sin  (double x);

cos

1
extern double cos  (double x);

tan

1
extern double tan  (double x);

asin

1
extern double asin (double x);

acos

1
extern double acos (double x);

atan

1
extern double atan (double x);

atan2

1
extern double atan2(double y, double x);

fast_fabs

1
extern double fast_fabs (double y);