ComplexColumnVector Class

Represents a column vector of complex numbers.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public sealed class ComplexColumnVector : AnyMatrix<Complex>, 
	IReadOnlyList<Complex>, IEnumerable<Complex>, IEnumerable, 
	IReadOnlyCollection<Complex>
Inheritance
Object    AnyMatrixComplex    ComplexColumnVector
Implements
IEnumerableComplex, IReadOnlyCollectionComplex, IReadOnlyListComplex, IEnumerable

Constructors

ComplexColumnVector(Complex) Initializes a new complex column vector with the given components.
ComplexColumnVector(Int32) Initializes a new complex column vector with the given dimension.

Properties

ColumnCount Gets the number of matrix columns.
(Overrides AnyMatrixTColumnCount)
Dimension Gets the dimension of the complex column vector.
IsReadOnly Gets a flag indicating whether the matrix is read-only.
(Inherited from AnyMatrixT)
ItemInt32 Gets or sets the specified vector component.
ItemInt32, Int32 Gets or sets the value of a matrix entry.
(Overrides AnyMatrixTItemInt32, Int32)
RowCount Gets the number of matrix rows.
(Overrides AnyMatrixTRowCount)

Methods

Copy Returns a copy of the complex column vector.
Equals(AnyMatrixT) Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrixT)
Equals(Object) Determines whether the given object is an equal matrix.
(Inherited from AnyMatrixT)
Fill Sets all matrix entries according to a supplied fill function.
(Inherited from AnyMatrixT)
GetHashCode Not a valid operation.
(Inherited from AnyMatrixT)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToArray Copies the matrix into an array.
(Inherited from AnyMatrixT)
ToStringReturns a string that represents the current object.
(Inherited from Object)

Operators

Multiply(AnyRectangularMatrix, ComplexColumnVector) Multiplies a real matrix by a complex column vector.
Multiply(Complex, ComplexColumnVector) Multiplies a complex column vector by a complex constant.

See Also