LinearCombination01

N=100;m=2;n=3;
X=fc_amat.random.randi(9,[N,m,n]);
info(X)
Y=fc_amat.random.randi(9,[N,m,n]);
info(Y)
A=3*X-2*Y;
info(A)
Y2=randi(9,[m,n]);
B=2*Y2-4*X;
info(B)
C=3*X-1;
info(C)
Y3=randi(9,[N,1]);
D=3*Y3-X;
info(D)
X is a 100x2x3 amat[double] object
Y is a 100x2x3 amat[double] object
A is a 100x2x3 amat[double] object
B is a 100x2x3 amat[double] object
C is a 100x2x3 amat[double] object
D is a 100x2x3 amat[double] object