|
We're glad you came by, but you might find what you're looking for elsewhere. TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it. Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope. |
returns a new list or matrix that is list2/matrix2 appended to list1/matrix1
augment(list1,list2)
augment(matrix1, matrix2)
augment(matrix1; matrix2)
Menu Location
- Press 2nd MATH to enter the MATH popup
- Press 4 to enter the Matrix submenu
- Press 7 to select augment(
This command works on all calculators.
? byte(s)
when lists are used as arguments, a list is returned that is list2 appended to list1. When matrices are used, if a comma is used to separate arguments, the matrices must have equal row dimensions and matrix2 is appended to matrix1 as new columns. If a semicolon is used, the matrices must have equal column dimension and matrix2 is appended to matrix1 as new rows.
augment({1,⁻3,2},{5,4})
{1,⁻3,2,5,4}
:[1,2:3,4]→M1
[1,2:3,4]
:[5,6]→M2
[5,6]
:augment(M1,M2)
[1,2,5:3,4,6]
:[5,6]→M2
[5,6]
:augment(M1;M2)
[1,2:3,4:5,6]Advanced Uses
Separate unrelated advanced uses with a horizontal bar.
Optimization
Error Conditions
240 - Dimension mismatch happens when either the rows or columns of the matrix do not align. See above..
