Click or drag to resize

ComplexColumnVector Class

Represents a column vector of complex numbers.
Inheritance Hierarchy
SystemObject
  Meta.Numerics.MatricesAnyMatrixComplex
    Meta.Numerics.MatricesComplexColumnVector

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public sealed class ComplexColumnVector : AnyMatrix<Complex>, 
	IReadOnlyList<Complex>, IReadOnlyCollection<Complex>, IEnumerable<Complex>, 
	IEnumerable

The ComplexColumnVector type exposes the following members.

Constructors
  NameDescription
Public methodComplexColumnVector(Int32)
Initializes a new complex column vector with the given dimension.
Public methodComplexColumnVector(Complex)
Initializes a new complex column vector with the given components.
Top
Properties
  NameDescription
Public propertyColumnCount
Gets the number of matrix columns.
(Overrides AnyMatrixTColumnCount.)
Public propertyDimension
Gets the dimension of the complex column vector.
Public propertyIsReadOnly
Gets a flag indicating whether the matrix is read-only.
(Inherited from AnyMatrixT.)
Public propertyItemInt32
Gets or sets the specified vector component.
Public propertyItemInt32, Int32
Gets or sets the value of a matrix entry.
(Overrides AnyMatrixTItemInt32, Int32.)
Public propertyRowCount
Gets the number of matrix rows.
(Overrides AnyMatrixTRowCount.)
Top
Methods
  NameDescription
Public methodCopy
Returns a copy of the complex column vector.
Public methodEquals(Object)
Determines whether the given object is an equal matrix.
(Inherited from AnyMatrixT.)
Public methodEquals(AnyMatrixT)
Determines whether the given matrix equals the current matrix.
(Inherited from AnyMatrixT.)
Public methodFill
Sets all matrix entries according to a supplied fill function.
(Inherited from AnyMatrixT.)
Public methodGetHashCode
Not a valid operation.
(Inherited from AnyMatrixT.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToArray
Copies the matrix into an array.
(Inherited from AnyMatrixT.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberMultiply(AnyRectangularMatrix, ComplexColumnVector)
Multiplies a real matrix by a complex column vector.
Public operatorStatic memberMultiply(Complex, ComplexColumnVector)
Multiplies a complex column vector by a complex constant.
Top
See Also