ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Processing Namespace / IGDoubleMatrix Class / GetElem Method
Row coordinate of the matrix element.
Column coordinate of the matrix element.




In This Topic
    GetElem Method
    In This Topic
    Gets matrix element according to matrix column and row coordinate.
    Syntax
    'Declaration
     
    Public Function GetElem( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Double
    'Usage
     
    Dim instance As IGDoubleMatrix
    Dim row As Integer
    Dim column As Integer
    Dim value As Double
     
    value = instance.GetElem(row, column)
    public double GetElem( 
       int row,
       int column
    )
    public: double GetElem( 
       int row,
       int column
    ) 
    public:
    double GetElem( 
       int row,
       int column
    ) 

    Parameters

    row
    Row coordinate of the matrix element.
    column
    Column coordinate of the matrix element.

    Return Value

    Double value.
    See Also