Subject: SF[887639] listarray when use_fast_arrays : true
From: Dieter Kaiser
Date: Sat, 17 Jan 2009 19:05:58 +0100
Two further remarks:
I have to modify the check for the range of a Maxima matrix a bit to take into
account not only a square matrix (I have overseen this point).
It is possible to assign a complete row with use_fast_arrays:false e.g.
a:matrix([1,2],[3,4]);
a[1]:[11,11];
This longer works with use_fast_arrays:true. Without range check we get a Lisp
error. With the suggested range check we get an Maxima Error: "Wrong number of
indices".
Dieter Kaiser