Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
multMM(A,B)=matrix(#A[,1],#A,i,j,A[i,j]*B[i,j]);
|
||||
divMM(A,B)=matrix(#A[,1],#A,i,j,A[i,j]/B[i,j]);
|
||||
powMM(A,B)=matrix(#A[,1],#A,i,j,A[i,j]^B[i,j]);
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
addMs(A,s)=A+matrix(#A[,1],#A,i,j,s);
|
||||
subMs(A,s)=A-matrix(#A[,1],#A,i,j,s);
|
||||
powMs(A,s)=matrix(#A[,1],#A,i,j,A[i,j]^s);
|
||||
Loading…
Add table
Add a link
Reference in a new issue