jlapeyre / mext

Package management and packages for Maxima (the CAS)
Other
3 stars 1 forks source link

adding aex lists does not thread #6

Open jlapeyre opened 6 years ago

jlapeyre commented 6 years ago

Addition should thread over these lists

(%i10) r2 : lrange(6,ot->ar);
(%o10)/A/                     [1, 2, 3, 4, 5, 6]
(%i11) r1 : lrange(6,ot->ar);
(%o11)/A/                     [1, 2, 3, 4, 5, 6]
(%i12) r1 + r2
;
(%o12)/A/                    2 [1, 2, 3, 4, 5, 6]