You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Matrix.this Indexer
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Matrix.this Indexer

Access elements of the matrix without specifying the name of the property.

Syntax
C#
Visual Basic
public double this[int Indx1, int Indx2];

This property allows you to access elements of the matrix without specifying the name of the property. For example: 

 

amtx[i,j] := 1; // where amtx is a TMtx object

Default array property also performs explicit range checking and is significantly slower than array pointers. The default array property supports only real values.

Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!