Unix and Linux Discussions Tagged with min |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
8,288 |
Cybersecurity |
|
|
|
0 |
2,801 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
29,008 |
Shell Programming and Scripting |
|
|
|
1 |
4,329 |
Homework & Coursework Questions |
|
|
|
4 |
2,744 |
Programming |
|
|
|
0 |
1,125 |
Software Releases - RSS News |
|
|
|
0 |
3,725 |
Red Hat |
|
|
|
0 |
1,143 |
UNIX and Linux RSS News |
|
|
|
0 |
1,195 |
UNIX and Linux RSS News |
|
|
|
0 |
1,149 |
Software Releases - RSS News |
|
|
|
0 |
982 |
Software Releases - RSS News |
|
|
|
0 |
1,580 |
UNIX and Linux RSS News |
|
|
|
0 |
1,039 |
UNIX and Linux RSS News |
|
|
|
3 |
4,613 |
Programming |
|
|
|
3 |
2,795 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
31,472 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
21,939 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,523 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,408 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
4 |
10,865 |
Cybersecurity |
|
|
|
7 |
13,435 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,957 |
UNIX for Dummies Questions & Answers |
mlib_VectorMinimumMag_U8C(3MLIB) mediaLib Library Functions mlib_VectorMinimumMag_U8C(3MLIB)
NAME
mlib_VectorMinimumMag_U8C, mlib_VectorMinimumMag_S8C, mlib_VectorMinimumMag_S16C, mlib_VectorMinimumMag_S32C, mlib_VectorMinimumMag_F32C,
mlib_VectorMinimumMag_D64C - find the first element with the minimum magnitude in a vector
SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ]
#include <mlib.h>
mlib_status mlib_VectorMinimumMag_U8C(mlib_u8 *min, const mlib_u8 *x, mlib_s32 n);
mlib_status mlib_VectorMinimumMag_S8C(mlib_s8 *min, const mlib_s8 *x, mlib_s32 n);
mlib_status mlib_VectorMinimumMag_S16C(mlib_s16 *min, const mlib_s16 *x, mlib_s32 n);
mlib_status mlib_VectorMinimumMag_S32C(mlib_s32 *min, const mlib_s32 *x, mlib_s32 n);
mlib_status mlib_VectorMinimumMag_F32C(mlib_f32 *min, const mlib_f32 *x, mlib_s32 n);
mlib_status mlib_VectorMinimumMag_D64C(mlib_d64 *min, const mlib_d64 *x, mlib_s32 n);
DESCRIPTION
Each of these functions finds the first element with the minimum magnitude in a complex vector, then puts the real and imaginary parts of
it into min[0] and min[1], respectively.
PARAMETERS
Each of the functions takes the following arguments:
min Pointer to the first element with the minimum 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 |Evolving |
+-----------------------------+-----------------------------+
|MT-Level |MT-Safe |
+-----------------------------+-----------------------------+
SEE ALSO
mlib_VectorMaximumMag_U8C(3MLIB), mlib_MatrixMaximumMag_U8C(3MLIB), mlib_MatrixMinimumMag_U8C(3MLIB), attributes(5)
SunOS 5.10 9 Nov 2004 mlib_VectorMinimumMag_U8C(3MLIB)