13 @field num numerator table
14 @field den denominator table
15 @field input input table
16 @field output output table
19 #if defined(__cplusplus)
21 #endif /* __cplusplus */
24 destructor for transfer function
27 int liba_tf_die(lua_State
*L
);
30 constructor for transfer function
31 @tparam table num numerator table
32 @tparam table den denominator table
33 @treturn a.tf transfer function userdata
36 int liba_tf_new(lua_State
*L
);
39 initialize for transfer function
40 @tparam table num numerator table
41 @tparam table den denominator table
42 @treturn a.tf transfer function userdata
45 int liba_tf_init(lua_State
*L
);
48 calculate for transfer function
49 @tparam number x input
50 @treturn number output
53 int liba_tf_iter(lua_State
*L
);
56 zeroing for transfer function
57 @treturn a.tf transfer function userdata
60 int liba_tf_zero(lua_State
*L
);
62 #if defined(__cplusplus)
64 #endif /* __cplusplus */