Difference between revisions of "TI-BASIC:Timesrowplus"
From Learn @ Cemetech
Jump to navigationJump to search (Initial automated import) |
(Automated superscript correction) |
||
Line 22: | Line 22: | ||
= Advanced Uses = | = Advanced Uses = | ||
− | You can add columns instead of rows with the aid of the | + | You can add columns instead of rows with the aid of the <sup>T</sup> ([[TI-BASIC:Transpose|Transpose]]) command. |
= Error Conditions = | = Error Conditions = |
Latest revision as of 22:22, 24 February 2016
Command Summary
Adds a multiple of one row of a matrix to another.
Command Syntax
- row+(factor,matrix,row1,row2)
Menu Location
Press:
- MATRX (on a TI-83) or 2nd MATRX (TI-83+ or higher) to access the matrix menu.
- RIGHT to access the MATH submenu.
- ALPHA F to select *row+(, or use arrows and ENTER.
TI-83/84/+/SE
1 byte
The *row+( adds a multiple of one row to another row and returns the result. It is an elementary row operation used in Gaussian Elimination.
[[1,2][3,4]] [[1 2] [3 4]] *row+(10,Ans,1,2) [[3 4 ] [31 42]]
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)
Related Commands
- |-
- |-
- *row(