Skip to content
Property Value
Hex Value $16
Categories
Localizations
  • FR: ligne+(

row+(

Overview

Returns a matrix with rowA of matrix added to rowB and stored in rowB.

Availability: Token available everywhere.

Syntax

row+(matrix,rowA,rowB)

Arguments

NameTypeOptional
matrixmatrix
rowA
rowB

Location

2nd, matrix, MATH, D:row+(


Description

The row+( command adds one row of a matrix to the second, and returns the result. It is an elementary row operation used in Gaussian Elimination.

[[1,2][3,4]]
    [[1 2]
     [3 4]]
row+(Ans,1,2)
    [[1 2]
     [4 6]]

Advanced Uses

You can add columns instead of rows with the aid of the T (transpose) command.

Error Conditions

  • ERR:INVALID DIM is thrown if one of the row arguments isn't a valid row (larger than the matrix size, or otherwise bad)

Source: parts of this page were written by the following TI|BD contributors: burr, DarkerLine, GoVegan, jnesselr, Weregoose.

History

Calculator OS Version Description
TI-82 1.0 Added

Last update: September 30, 2023 15:38:51
Created: February 23, 2023 23:15:01
Authors: Adrien Bertrand