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 Namespace
  • GeneralMatrix Class
    • Members
    • Constructors
    • Methods
    • Properties
Collapse imageExpand ImageCopy imageCopyHover image
       




GeneralMatrix Class

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

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

Syntax

C#
[SerializableAttribute]
public class GeneralMatrix : Matrix, 
	IDoubleStorage, ICloneable, ISerializable, IResizableMatrix
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class GeneralMatrix _
	Inherits Matrix _
	Implements IDoubleStorage, ICloneable, ISerializable, IResizableMatrix
Visual C++
[SerializableAttribute]
public ref class GeneralMatrix : public Matrix, 
	IDoubleStorage, ICloneable, ISerializable, IResizableMatrix
F#
[<SerializableAttribute>]
type GeneralMatrix =  
    class
        inherit Matrix
        interface IDoubleStorage
        interface ICloneable
        interface ISerializable
        interface IResizableMatrix
    end

Remarks

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

The components of a GeneralMatrix are stored in a one-dimensional array of Double 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 GeneralMatrix 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 GeneralMatrix can represent any matrix, it is often used as the return type of matrix operations.

Inheritance Hierarchy

System..::.Object
  Extreme.Mathematics.LinearAlgebra..::.LinearTransformation
    Extreme.Mathematics..::.Matrix
      Extreme.Mathematics.LinearAlgebra..::.GeneralMatrix

See Also

GeneralMatrix Members
Extreme.Mathematics.LinearAlgebra Namespace
Extreme.Mathematics.LinearAlgebra..::.LUDecomposition
Extreme.Mathematics.LinearAlgebra..::.QRDecomposition
Extreme.Mathematics..::.Vector

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.