I have a TI-84 Plus CE (although I kind of want it to be backwards compatible, and compatible with the nSPIRE and TI-84 Plus)
I am trying to output onto the screen what position the matrix editor is at, and I am getting an ERROR:syntax
, although (to the best of my knowledge about this language) the statement is valid.
my code is:
:Input "NUM OF ROWS?",A
:Input "NUM OF COLUMNS?",B
:{A,B}->dim([A])
:For(R,1,A)
:For(C,1,B)
:Disp "LOCATION: ("R","C")"
:Input "VALUE?",E
:E->[A](C,D)
:End
:End
:ChiSquared-Test([A],[B])
side note: i'm also getting a "divide by zero error" on the chi-squared test, for an unknown reason.