1mlib_SignalMul_F32_F32(3MLImBe)diaLib Library Functiomnlsib_SignalMul_F32_F32(3MLIB)
2
3
4
6 mlib_SignalMul_F32_F32, mlib_SignalMul_F32S_F32S - multiplication
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_SignalMul_F32_F32(mlib_f32 *dst,
13 const mlib_f32 *src1, const mlib_f32 *src2, mlib_s32 n);
14
15
16 mlib_status mlib_SignalMul_F32S_F32S(mlib_f32 *dst,
17 const mlib_f32 *src1, const mlib_f32 *src2, mlib_s32 n);
18
19
21 Each of these functions performs multiplication.
22
24 Each of the functions takes the following arguments:
25
26 src1dst The output signal array.
27
28
29 src1 The first input signal array
30
31
32 src2 The second input signal array.
33
34
35 n Number of samples in the input signal arrays.
36
37
39 Each of the functions returns MLIB_SUCCESS if successful. Otherwise it
40 returns MLIB_FAILURE.
41
43 See attributes(5) for descriptions of the following attributes:
44
45
46
47
48 ┌─────────────────────────────┬─────────────────────────────┐
49 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
50 ├─────────────────────────────┼─────────────────────────────┤
51 │Interface Stability │Committed │
52 ├─────────────────────────────┼─────────────────────────────┤
53 │MT-Level │MT-Safe │
54 └─────────────────────────────┴─────────────────────────────┘
55
57 attributes(5)
58
59
60
61SunOS 5.11 2 Mar 2007 mlib_SignalMul_F32_F32(3MLIB)