Currently we have to use Labtalk script to do it. Assume that two matrix objects M1, M2 are in [MBook1]MSheet1!. You can run the following script in the command window.
range M1=[MBook1]MSheet1!1;
range M2=[MBook1]MSheet1!2;
addsheet book:=MBook1 fname:=origin.otm oname:=sname;
range M3=[MBook1]sname$!1;
M3.nrows=98;
M3.ncols=99;
for(i=3; i<=100; i++)
for(j=2; j<=100;j++)
M3[i-2, j-1]=M1[i, j]+M2[i, j];
Added results are in the matrix object M3.
Sam
OriginLab Technical Services