Am 20.01.2017 um 18:49 schrieb Stefano Fachin:
> matrices MC = array(N)
> matrix MC[i] = mcorr( {X} )
crashes because when filling arrays the object type must not be
declared. It should be
<hansl>
matrices MC = array(N)
loop i = 1..N
MC[i] = mcorr( {X} )
Thanks Stefano, absolutely necessary post -- I was confusing setting the
member of a bundle with setting an array element.
cheers,
sven