Re: Vector of Matrix

2017-04-23 Thread arijit chakraborty
Thanks Matthias for your reply! It would be great if we have this functionality in systemML. Regards, Arijit From: Matthias Boehm <mboe...@googlemail.com> Sent: Saturday, April 22, 2017 12:18 AM To: dev@systemml.incubator.apache.org Subject: Re:

Re: Vector of Matrix

2017-04-21 Thread Matthias Boehm
no, right now, we don't support structs or complex objects. Regards, Matthias On 4/21/2017 4:17 AM, arijit chakraborty wrote: Hi, In R (as well as in python), we can store values list within list. Say I've 2 matrix with different dimensions, x <- matrix(1:10, ncol=2) y <- matrix(1:5,

Vector of Matrix

2017-04-21 Thread arijit chakraborty
Hi, In R (as well as in python), we can store values list within list. Say I've 2 matrix with different dimensions, x <- matrix(1:10, ncol=2) y <- matrix(1:5, ncol=1) FinalList <- c(x, y) Is it possible to do such form in systemML? I'm not looking for cbind or rbind. Thank you! Arijit