Row Operations in the Student:-LinearAlgebra Package
Calling Sequence
Parameters
Description
Examples
AddRow(A, i, j, s)
MultiplyRow(A, i, s)
SwapRow(A, i, j)
A
-
Matrix
i, j
integers; row selection
s
algebraic; multiplier
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).
with⁡Student:-LinearAlgebra:
A≔1,3,7|4,5,6
A≔143576
B≔AddRow⁡A,2,1,−3
B≔140−776
SwapRow⁡B,1,3
760−714
MultiplyRow⁡A,2,x
143⁢x5⁢x76
See Also
LinearAlgebra:-RowOperation
Student:-LinearAlgebra
Download Help Document