81BD5 |
ARSIZE
|
( [] → # )
Returns number of elements as a bint.
|
81BDA |
DIMLIMITS
|
( [] → {#n #m} )
Returns list of array dimensions.
|
81BDF |
GETATELN
|
( # [] → ob T )
( # [] → F )
Gets one element from array.
|
81E64 |
MATCON
|
( [%] % → [%]' )
( [C%] C% → [C%]' )
Replace all elements of [F%] by F%.
|
81AA4 |
MDIMS
|
( [1D] → #m F )
( [2D] → #m #n T )
If it is a vector, returns number of elements
and FALSE . If it is an array (including
arrays with only one line), returns
dimensions and TRUE .
|
83A0C |
MDIMSDROP
|
( [2D] → #m #n )
MDIMS followed by DROP .
|
83BB0 |
OVERARSIZE
|
( [] ob → [] ob #elts )
Does OVER then <REF>ARSIZE.
|
81AA9 |
PUTEL
|
( [%] % # → [%]' )
( [C%] C% # → [C%]' )
Puts element at specified position. Converts
to "short" before. Warning: no copy to
tempob first.
|
81E6E |
MATREDIM
|
( [F%] {#n #m} → [F%]' )
|
81E78 |
MATTRN
|
( [F%] → [F%]' )
Transposes matrix.
|