MatrixObject.MatrixCopy

This function copies Matrix from Row1,Col1 using NumOfRows and NumOfColumns to Matrix2 starting at Row2,Col2. Source and Destination Matrices may be the same and overlap is allowed.

Syntax Parameters Return Value
Function MatrixObject.MatrixCopy( _
    Matrix As Double(), _
    SRow As Long, _
    SCol As Long, _
    NRow As Long, _
    NCol As Long, _
    ByRef Res As Double(), _
    DRow As Long, _
    DCol As Long) As IntegerFunction MatrixObject.MatrixAdd( _
    Matrix1 As Double(), _
    Matrix2 As Double(), _
    ByRef Result As Double()) As Integer
  • Matrix [in]

Type: Double()

  • SRow [in]

Type: Long

  • SCol [in]

Type: Long

  • NRow [in]

Type: Long

  • NCol [in]

Type: Long

  • Res [in,out]

Type: Double()

  • DRow [in]

Type: Long

  • DCol [in]

Type: Long

Integer