Robert Dodier:
> Maxima doesn't handle array arguments consistently.
> ... If you only want to read values in an array
> argument, I think there is no problem. So maybe
> you can tell us what you are trying to do.
We want to pass arrays to a subroutine (a function)
by reference not by value, that is, we need to give
the address of the actuall array(s) so that the
routine can access and modify them.
If there was only one array in question, we could pass
it in by value (a copy or readonly) and return the
modification as a return value. But we need to mangle
and few arrays at a time. Is that possible?