VRfLog10


Routine

void VRfLog10 (const float x[], float y[], int N)

Purpose

Find the logarithm (base 10) of each element of an array

Description

This routine finds the logarithm (base 10) for each element of an array.
  y[i] = log10(x[i]),  0 <= i < N.

Parameters

-> const float x[]
Input array (N elements)
<- float y[]
Output array (N elements). The output array can be the same as the input array.
-> int N
Number of elements in the arrays (may be zero)

Author / revision

P. Kabal / Revision 1.9 2003/05/09

See Also

VRfAmpldB


Main Index libtsp