cvec_t class

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

Constructors

cvec_t()

Properties

hashCode int
The hash code for this object.
no setterinherited
length int
< length of buffer = (requested length)/2 + 1
getter/setter pair
norm Pointer<Float>
< norm array of size ::cvec_t.length
getter/setter pair
phas Pointer<Float>
< 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