1mlib_SignalDTWKScalarInit_Fm3e2d(i3aMLLiIbB)LibrarymFluinbc_tSiiognnsalDTWKScalarInit_F32(3MLIB)
2
3
4
6 mlib_SignalDTWKScalarInit_F32 - initialization for K-best paths of
7 scalar data
8
10 cc [ flag... ] file... -lmlib [ library... ]
11 #include <mlib.h>
12
13 mlib_status mlib_SignalDTWKScalarInit_F32(void *state,
14 const mlib_f32 *dref, mlib_s32 lref, mlib_s32 kbest,
15 mlib_s32 delta, mlib_s32 local, mlib_s32 slope);
16
17
19 The mlib_SignalDTWKScalarInit_F32() function initializes the internal
20 state structure for dynamic time warping (DTW) for K-best paths of
21 scalar data.
22
23
24 The init function performs internal state structure allocation and
25 global initialization. Per DTW function call initialization is done in
26 DTW function, so the same internal state structure can be reused for
27 multiple DTW function calls.
28
30 The function takes the following arguments:
31
32 dref The reference data array.
33
34
35 lref The length of the reference data array.
36
37
38 kbest The number of the best paths evaluated.
39
40
41 delta The delta in the endpoint constraints.
42
43
44 local The type of the local continuity constraints. MLIB_DTW_ITAKURA
45 for Itakura type constraints.
46
47
48 slope The type of the slope weighting. MLIB_DTW_NONE for no slope
49 weighting.
50
51
52 state Pointer to the internal state structure.
53
54
56 The function returns MLIB_SUCCESS if successful. Otherwise it returns
57 MLIB_FAILURE.
58
60 See attributes(5) for descriptions of the following attributes:
61
62
63
64
65 ┌─────────────────────────────┬─────────────────────────────┐
66 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
67 ├─────────────────────────────┼─────────────────────────────┤
68 │Interface Stability │Committed │
69 ├─────────────────────────────┼─────────────────────────────┤
70 │MT-Level │MT-Safe │
71 └─────────────────────────────┴─────────────────────────────┘
72
74 mlib_SignalDTWKScalarInit_F32(3MLIB), mlib_SignalDTWKScalar_F32(3MLIB),
75 mlib_SignalDTWKScalarPath_F32(3MLIB), mlib_SignalDTWKScalar‐
76 Free_F32(3MLIB), attributes(5)
77
78
79
80SunOS 5.11 2 Mar 200m7lib_SignalDTWKScalarInit_F32(3MLIB)