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
    • Features
    • Solutions
    • Documentation
    • QuickStart Samples
    • Sample Applications
    • Downloads
    • Technical Support
    • Download trial
    • How to buy
    • Blog
    • Company
    • Resources
  • Documentation
    • Introduction
    • Mathematics Library User's Guide
    • Vector and Matrix Library User's Guide
    • Statistics Library User's Guide
    • Reference
  • Reference
    • Extreme.Mathematics Namespace
    • Extreme.Mathematics.Algorithms Namespace
    • Extreme.Mathematics.Calculus Namespace
    • Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations Namespace
    • Extreme.Mathematics.Curves Namespace
    • Extreme.Mathematics.Curves.Nonlinear Namespace
    • Extreme.Mathematics.EquationSolvers Namespace
    • Extreme.Mathematics.Generic Namespace
    • Extreme.Mathematics.Generic.LinearAlgebra Namespace
    • Extreme.Mathematics.Generic.LinearAlgebra.Providers Namespace
    • Extreme.Mathematics.LinearAlgebra Namespace
    • Extreme.Mathematics.LinearAlgebra.Complex Namespace
    • Extreme.Mathematics.LinearAlgebra.IO Namespace
    • Extreme.Mathematics.LinearAlgebra.Providers Namespace
    • Extreme.Mathematics.LinearAlgebra.Sparse Namespace
    • Extreme.Mathematics.Optimization Namespace
    • Extreme.Mathematics.Optimization.LinearProgramming Namespace
    • Extreme.Mathematics.SignalProcessing Namespace
    • Extreme.Mathematics.SpecialFunctions Namespace
    • Extreme.Statistics Namespace
    • Extreme.Statistics.Distributions Namespace
    • Extreme.Statistics.Multivariate Namespace
    • Extreme.Statistics.Random Namespace
    • Extreme.Statistics.Tests Namespace
    • Extreme.Statistics.TimeSeriesAnalysis Namespace
  • Extreme.Mathematics.LinearAlgebra.Complex Namespace
    • ComplexBandVector Class
    • ComplexCholeskyDecomposition Class
    • ComplexColumnCollection Structure
    • ComplexConstantVector Class
    • ComplexDecomposition Class
    • ComplexGeneralMatrix Class
    • ComplexGeneralVector Class
    • ComplexHermitianMatrix Class
    • ComplexLeastSquaresSolver Class
    • ComplexLinearTransformation Class
    • ComplexLUDecomposition Class
    • ComplexMatrixView Class
    • ComplexQRDecomposition Class
    • ComplexRowCollection Structure
    • ComplexSingularValueDecomposition Class
    • ComplexTriangularMatrix Class
    • ComplexVectorView Class
    • IComplexLeastSquaresSolver Interface
    • IComplexStorage Interface
    • ISingleComplexLeastSquaresSolver Interface
    • ISingleComplexStorage Interface
    • SingleComplexBandVector Class
    • SingleComplexCholeskyDecomposition Class
    • SingleComplexColumnCollection Structure
    • SingleComplexConstantVector Class
    • SingleComplexDecomposition Class
    • SingleComplexDenseMatrix Class
    • SingleComplexDenseVector Class
    • SingleComplexHermitianMatrix Class
    • SingleComplexLeastSquaresSolver Class
    • SingleComplexLinearTransformation Class
    • SingleComplexLUDecomposition Class
    • SingleComplexMatrixView Class
    • SingleComplexQRDecomposition Class
    • SingleComplexRowCollection Structure
    • SingleComplexSingularValueDecomposition Class
    • SingleComplexTriangularMatrix Class
    • SingleComplexVectorView Class
  • ComplexHermitianMatrix Class
    • Members
    • Constructors
    • Methods
    • Properties
  • Methods
    • AddConjugateOuterProduct Method
    • AddOuterProduct Overloads
    • AddProductToVector Method
    • AddSymmetricOuterProduct Overloads
    • CloneData Method
    • ConjugateTranspose Method
    • EstimateConditionNumber Method
    • Extract Overloads
    • FromOuterProduct Overloads
    • GetColumn Method
    • GetComponents Method
    • GetDeterminant Method
    • GetDiagonal Overloads
    • GetImaginaryPart Method
    • GetInverse Method
    • GetRealPart Method
    • GetRow Method
    • GetSubmatrix Method
    • GetValue Method
    • IsComponentWritable Method
    • IsSingular Method
    • Multiply Overloads
    • Rank Method
    • SetValue Overloads
    • Solve Overloads
    • SubtractOuterProduct Overloads
    • ToArray Method
    • ToString Method
  • Extract Overloads
    • Extract Method (ComplexMatrix, Int32, Int32, Int32, MatrixTriangleMode)
    • Extract Method (ComplexGeneralMatrix, Int32, Int32, Int32, MatrixTriangleMode, Boolean)
  • Extract Method (ComplexGeneralMatrix, Int32, Int32, Int32, MatrixTriangleMode, Boolean)
Collapse imageExpand ImageCopy imageCopyHover image
       




ComplexHermitianMatrix..::..Extract Method (ComplexGeneralMatrix, Int32, Int32, Int32, MatrixTriangleMode, Boolean)

ComplexHermitianMatrix Class  See Also 
Creates a ComplexHermitianMatrix from a part of a ComplexGeneralMatrix.

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#
public static ComplexHermitianMatrix Extract(
	ComplexGeneralMatrix matrix,
	int dimension,
	int startRow,
	int startColumn,
	MatrixTriangleMode triangleMode,
	bool reuseComponentArray
)
Visual Basic (Declaration)
Public Shared Function Extract ( _
	matrix As ComplexGeneralMatrix, _
	dimension As Integer, _
	startRow As Integer, _
	startColumn As Integer, _
	triangleMode As MatrixTriangleMode, _
	reuseComponentArray As Boolean _
) As ComplexHermitianMatrix
Visual C++
public:
static ComplexHermitianMatrix^ Extract(
	ComplexGeneralMatrix^ matrix, 
	int dimension, 
	int startRow, 
	int startColumn, 
	MatrixTriangleMode triangleMode, 
	bool reuseComponentArray
)
F#
static member Extract : 
        matrix:ComplexGeneralMatrix * 
        dimension:int * 
        startRow:int * 
        startColumn:int * 
        triangleMode:MatrixTriangleMode * 
        reuseComponentArray:bool -> ComplexHermitianMatrix 

Parameters

matrix
Type: Extreme.Mathematics.LinearAlgebra.Complex..::.ComplexGeneralMatrix
The matrix that contains the components of the new matrix.
dimension
Type: System..::.Int32
The number of rows and columns of the new matrix.
startRow
Type: System..::.Int32
The row in matrix of the first component of the new matrix.
startColumn
Type: System..::.Int32
The column in matrix of the first component of the new matrix.
triangleMode
Type: Extreme.Mathematics.LinearAlgebra..::.MatrixTriangleMode
A MatrixTriangleMode value that indicates whether the components of the hermitian matrix are stored in the upper or lower triangular portion of the block specified by startRow and startColumn.
reuseComponentArray
Type: System..::.Boolean
A bool value that indicates whether the data array should be copied or reused for internal storage.

Return Value

A ComplexHermitianMatrix.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionmatrix is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::.ArgumentOutOfRangeException dimension is less than zero

-or-

startRow is less than zero or greater than or equal to the number of rows in matrix.

-or-

startColumn is less than zero or greater than or equal to the number of columns in matrix.

System..::.ArgumentException

startRow plus dimension is greater than or equal to the number of rows in matrix.

-or-

startColumn plus dimension is greater than or equal to the number of columns in matrix.

See Also

ComplexHermitianMatrix Class
Extract Overload
Extreme.Mathematics.LinearAlgebra.Complex Namespace

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.