AddRow - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


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

withStudent:-LinearAlgebra:

A1,3,7|4,5,6

A143576

(1)

BAddRowA,2,1,3

B140−776

(2)

SwapRowB,1,3

760−714

(3)

MultiplyRowA,2,x

143x5x76

(4)

See Also

LinearAlgebra:-RowOperation

Student:-LinearAlgebra