1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<HTML>
<HEAD>
<TITLE>TSP (libtsp/VR) - VRfLog10</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFACD">
<H2>VRfLog10</H2>
<HR>
<H4>Routine</H4>
<DL>
<DT>
void VRfLog10 (const float x[], float y[], int N)
</DL>
<H4>Purpose</H4>
<DL>
<DT>
Find the logarithm (base 10) of each element of an array
</DL>
<H4>Description</H4>
This routine finds the logarithm (base 10) for each element of an array.
<PRE>
y[i] = log10(x[i]), 0 <= i < N.
</PRE>
<H4>Parameters</H4>
<DL>
<DT>
-> const float x[]
<DD>
Input array (N elements)
<DT>
<- float y[]
<DD>
Output array (N elements). The output array can be the same as the input
array.
<DT>
-> int N
<DD>
Number of elements in the arrays (may be zero)
</DL>
<H4>Author / revision</H4>
P. Kabal Copyright (C) 1997
/ Revision 1.6 1997/10/11
<H4>See Also</H4>
<A HREF="VRfAmpldB.html">VRfAmpldB</A>
<P>
<HR>
Main Index <A HREF="../libtsp.html">libtsp</A>
</BODY>
</HTML>
|