Is there a way to do simple arithmetic operations on ff class matrices? i.e. something like this:
> library(ff)
> a = ff(1, vmode = "double", dim = c(3,4))
> b = ff(2, vmode = "double", dim = c(3,4))
> a+b
Error in a + b : non-numeric argument to binary operator
I know ffbase can do this on vectors, but haven't found anything for matrices. Thanks.