cvec_t class final
Vector of real-valued phase and spectrum data
\code
uint_t buffer_size = 1024;
// create a complex vector of 512 values cvec_t * input = new_cvec (buffer_size);
// set some values of the vector
input->norm23 = 2.;
input->phas23 = M_PI;
// ..
// compute the mean of the vector mean = cvec_mean(input);
// destroy the vector del_cvec (input);
\endcode
- Inheritance
- Implemented types
- Available extensions
Constructors
- cvec_t()
Properties
- 
  address
  → Pointer<T> 
- 
      Available on T, provided by the StructAddress extension The memory address of the underlying data.no setter
- hashCode → int
- 
  The hash code for this object.
  no setterinherited
- length ↔ int
- 
  < length of buffer = (requested length)/2 + 1
  getter/setter pair
- 
  norm
  ↔ Pointer<smpl_t> 
- 
  < norm array of size ::cvec_t.length
  getter/setter pair
- 
  phas
  ↔ Pointer<smpl_t> 
- 
  < phase array of size ::cvec_t.length
  getter/setter pair
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  no setterinherited
Methods
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited