AddRow - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

Row Operations in the Student:-LinearAlgebra Package

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

AddRow(A, i, j, s)

MultiplyRow(A, i, s)

SwapRow(A, i, j)

Parameters

A

-

Matrix

i, j

-

integers; row selection

s

-

algebraic; multiplier

Description

• 

The AddRow(A, i, j, s) command replaces row i of A with row i + s * row j.  This command can also be called as AddRows(A, i, j, s).

• 

The MultiplyRow(A, i, s) command replaces row i of A with s * row i.

• 

The SwapRow(A, i, j) command interchanges rows i and j of A.  This command can also be called as SwapRows(A, i, j).

Examples

(1)

(2)

(3)

(4)

See Also

LinearAlgebra:-RowOperation

Student:-LinearAlgebra

 


Download Help Document