Everything

log10f


Calculates the base-ten logarithm of a floating-point number.

[Format]

#include <mathf.h>

float log10f (float f);

[Parameters]

f Floating-point number for which base-ten logarithm is to be computed

[Return values]

Normal: Base-ten logarithm of f

Abnormal: Domain error: Returns not-a-number.

[Remarks]

A domain error occurs if f is negative.

A range error occurs if f is 0.0.