Extreme Optimization™: Complexity made simple.

Numerical Components
for .NET

  • Home
  • •
  • Features
    • Math Library
    • Vector and Matrix Library
    • Statistics Library
    • Performance
    • Usability
  • •
  • Documentation
    • Introduction
    • Math Library User's Guide
    • Vector and Matrix Library User's Guide
    • Statistics Library User's Guide
    • Reference
  • •
  • Support
    • Frequently Asked Questions
    • QuickStart Samples
    • Sample Applications
    • Downloads
  • •
  • Blog
  • •
  • Company
    • About us
    • Testimonials
    • Customers
    • Press Releases
    • Careers
    • Contact us
Introduction
Expand Mathematics Library User's GuideMathematics Library User's Guide
Expand Vector and Matrix Library User's GuideVector and Matrix Library User's Guide
Expand Statistics Library User's GuideStatistics Library User's Guide
Expand ReferenceReference
  • Home
  • Documentation
  • Reference
  • Extreme.Mathematics.LinearAlgebra.Complex Namespace
  • ComplexGeneralMatrix Class
    • Members
    • Constructors
    • Methods
    • Properties
Collapse imageExpand ImageCopy imageCopyHover image
       




ComplexGeneralMatrix Class

Members  See Also 
Represents a general, dense, square or rectangular ComplexMatrix.

Namespace:  Extreme.Mathematics.LinearAlgebra.Complex
Assembly:  Extreme.Numerics.Net20 (in Extreme.Numerics.Net20.dll) Version: 3.6.10055.0 (3.6.10077.0)

Syntax

C#
[SerializableAttribute]
public sealed class ComplexGeneralMatrix : ComplexMatrix, 
	IComplexStorage, ICloneable, ISerializable
Visual Basic (Declaration)
<SerializableAttribute> _
Public NotInheritable Class ComplexGeneralMatrix _
	Inherits ComplexMatrix _
	Implements IComplexStorage, ICloneable, ISerializable
Visual C++
[SerializableAttribute]
public ref class ComplexGeneralMatrix sealed : public ComplexMatrix, 
	IComplexStorage, ICloneable, ISerializable
F#
[<SealedAttribute>]
[<SerializableAttribute>]
type ComplexGeneralMatrix =  
    class
        inherit ComplexMatrix
        interface IComplexStorage
        interface ICloneable
        interface ISerializable
    end

Remarks

A matrix is a two-dimensional array of real numbers. Use the ComplexGeneralMatrix class to represent general, dense matrices. It is the most general implementation of the ComplexMatrix class. No components are assumed to have a specific value, and no relationship is assumed to exist between different components.

The components of a ComplexGeneralMatrix are stored in a one-dimensional array of DoubleComplex values. By default, components that are adjacent in a column of the matrix are adjacent in the storage array. The components are said to be stored in column major order. It is also possible to have elements stored in row major order.

The ComplexGeneralMatrix class implements algorithms using the general matrix BLAS and LAPACK routines. These routines assume matrix components are stored in column major order. However, any necessary conversions are performed transparantly. No additional work is needed. In some cases there might be a small performance penalty.

Because ComplexGeneralMatrix can represent any matrix, it is often used as the return type of matrix operations.

Inheritance Hierarchy

System..::.Object
  Extreme.Mathematics.LinearAlgebra.Complex..::.ComplexLinearTransformation
    Extreme.Mathematics..::.ComplexMatrix
      Extreme.Mathematics.LinearAlgebra.Complex..::.ComplexGeneralMatrix

See Also

ComplexGeneralMatrix Members
Extreme.Mathematics.LinearAlgebra.Complex Namespace
Extreme.Mathematics.LinearAlgebra.Complex..::.ComplexLUDecomposition
Extreme.Mathematics.LinearAlgebra.Complex..::.ComplexQRDecomposition
Extreme.Mathematics..::.ComplexVector

Send comments on this topic to support@extremeoptimization.com

Copyright © 2003-2010, Extreme Optimization. All rights reserved.
Extreme Optimization, Complexity made simple, M#, and M Sharp are trademarks of ExoAnalytics Inc.
Microsoft, Visual C#, Visual Basic, Visual Studio, Visual Studio.NET, and the Optimized for Visual Studio logo
are registered trademarks of Microsoft Corporation.