Augment

sample.png

Command Summary

returns a new list or matrix that is list2/matrix2 appended to list1/matrix1

Command Syntax

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(

Calculator Compatibility

This command works on all calculators.

Token Size

? 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..

Related Commands

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Noncommercial 2.5 License.