cvec_norm_get_sample method

double cvec_norm_get_sample(
  1. Pointer<cvec_t> s,
  2. int position
)

read norm value from a complex buffer

This is equivalent to: \code smpl_t foo = s->normposition; \endcode

\param s vector to read from \param position sample position to read from

Implementation

double cvec_norm_get_sample(
  ffi.Pointer<cvec_t> s,
  int position,
) {
  return _cvec_norm_get_sample(
    s,
    position,
  );
}