cvec_norm_get_data method

Pointer<smpl_t> cvec_norm_get_data(
  1. Pointer<cvec_t> s
)

read norm data from a complex buffer

\code smpl_t *data = s->norm; \endcode

\param s vector to read from

Implementation

ffi.Pointer<smpl_t> cvec_norm_get_data(
  ffi.Pointer<cvec_t> s,
) {
  return _cvec_norm_get_data(
    s,
  );
}