Just bored, I guess... it will allow me to do a 3D frame analysis on my pocket calculator, rather than on my laptop... Just seeing if it can be done. Maybe the wrong calculator for doing it, but, the calculator is extremely powerful. The *.pdf shows the spreadsheet input and with the combined business, statistics, and algebraic and calculus functions, the calculator is more powerful than excel (with some major limitations in lookup functions, etc.) Mathematically, it's top of the line, but, clunky for programming.
I'll post some code showing how to do an array just to show the level of difficulty; it treats spreadsheet columns as 'List' variables...
Clunky code... there may be an easier way, but I couldn't find one. Arrays can only be two columns, else, you get an error message and if you don't convert the list to a column of one, you get a horizontal matrix with one row, and an error message that the data is incompatible. To augment the columns have to have the same number of rows. Execution is fast, but, I hate workarounds, and I don't know what is lurking:
a:=augment(n_x, n_y) 'join two columns as list (x and y coords)
b:=list▶mat(a, 2) 'convert list to matrix of 2 columns
c:=list▶mat(n_z, 1) 'convert third column list to matrix of 1 column (z coord)
b:=augment(b, c) 'join third column to 2 column matrix
Disp b 'test to see that there are 3 columns in matrix (x, y, and z coords)
Disp b[2, 2] 'display element of matrix; third column of matrix has 0 values
Dik