Re: Commands to create matrix in TI-89


[Prev][Next][Index][Thread]

Re: Commands to create matrix in TI-89



Not with the editor.  You must use home screen commands.
[[1,2][3,4][5,6]]->a
a=[[1 2]
   [3 4]
   [5 6]]

a[1,2] = 3
9->a[1,2]
a=[[1 2]
   [9 4]
   [5 6]]

>Does TI-89 have commands to create and edit a matrix from programs?