| http://www.w3.org/ns/prov#value | - Matrix Operations Multiplication First lets enter some Matrices A=[1 2 0;2 5 -1;4 10 -1] D=[3 8;7 2;6 4;12 5] Lets take the transpose of each of them B=A' E=D' Lets Multiply the original matrix by it is transpose C=A*B F=D*E As you notice this is true matrix multiplication, and must therefore you must comply with those rules, for example if you try to multiply A by D you will get an error G=A*D
|