Unix and Linux Discussions Tagged with max |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
6,024 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,087 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,114 |
UNIX for Beginners Questions & Answers |
|
|
|
22 |
5,794 |
Shell Programming and Scripting |
|
|
|
11 |
29,008 |
Shell Programming and Scripting |
|
|
|
1 |
4,329 |
Homework & Coursework Questions |
|
|
|
3 |
9,091 |
Shell Programming and Scripting |
|
|
|
4 |
2,743 |
Programming |
|
|
|
2 |
13,169 |
IP Networking |
|
|
|
20 |
33,444 |
Shell Programming and Scripting |
|
|
|
1 |
11,909 |
AIX |
|
|
|
4 |
4,544 |
Programming |
|
|
|
0 |
1,370 |
UNIX and Linux RSS News |
|
|
|
1 |
18,805 |
Shell Programming and Scripting |
|
|
|
3 |
31,919 |
SuSE |
|
|
|
0 |
1,094 |
Software Releases - RSS News |
|
|
|
6 |
21,690 |
Shell Programming and Scripting |
|
|
|
0 |
1,058 |
Software Releases - RSS News |
|
|
|
11 |
8,420 |
AIX |
|
|
|
0 |
1,462 |
Software Releases - RSS News |
|
|
|
0 |
1,050 |
UNIX and Linux RSS News |
|
|
|
1 |
5,448 |
Solaris |
|
|
|
1 |
13,785 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,215 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
38,810 |
Shell Programming and Scripting |
|
|
|
2 |
4,040 |
Filesystems, Disks and Memory |
|
|
|
0 |
6,416 |
Programming |
|
|
|
8 |
7,676 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,580 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,580 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
8,606 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,262 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,432 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
4,796 |
UNIX for Dummies Questions & Answers |
mlib_VectorMaximumMag_U8C(3MLIB) mediaLib Library Functions mlib_VectorMaximumMag_U8C(3MLIB)
NAME
mlib_VectorMaximumMag_U8C, mlib_VectorMaximumMag_S8C, mlib_VectorMaximumMag_S16C, mlib_VectorMaximumMag_S32C, mlib_VectorMaximumMag_F32C,
mlib_VectorMaximumMag_D64C - find the first element with the maximum magnitude in a vector
SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ]
#include <mlib.h>
mlib_status mlib_VectorMaximumMag_U8C(mlib_u8 *max,
const mlib_u8 *x, mlib_s32 n);
mlib_status mlib_VectorMaximumMag_S8C(mlib_s8 *max,
const mlib_s8 *x, mlib_s32 n);
mlib_status mlib_VectorMaximumMag_S16C(mlib_s16 *max,
const mlib_s16 *x, mlib_s32 n);
mlib_status mlib_VectorMaximumMag_S32C(mlib_s32 *max,
const mlib_s32 *x, mlib_s32 n);
mlib_status mlib_VectorMaximumMag_F32C(mlib_f32 *max,
const mlib_f32 *x, mlib_s32 n);
mlib_status mlib_VectorMaximumMag_D64C(mlib_d64 *max,
const mlib_d64 *x, mlib_s32 n);
DESCRIPTION
Each of these functions finds the first element with the maximum magnitude in a complex vector, then puts the real and imaginary parts of
it into max[0] and max[1], respectively.
PARAMETERS
Each of the functions takes the following arguments:
max Pointer to the first element with the maximum magnitude.
x Pointer to the first element of the source vector.
n Number of elements in the source vector.
RETURN VALUES
Each of the functions returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Committed |
+-----------------------------+-----------------------------+
|MT-Level |MT-Safe |
+-----------------------------+-----------------------------+
SEE ALSO
mlib_VectorMinimumMag_U8C(3MLIB), mlib_MatrixMaximumMag_U8C(3MLIB), mlib_MatrixMinimumMag_U8C(3MLIB), attributes(5)
SunOS 5.11 2 Mar 2007 mlib_VectorMaximumMag_U8C(3MLIB)