Exemplo n.º 1
0
        public void ArrayMultiply()
        {
            A = R.Copy();
            GeneralMatrix B = GeneralMatrix.Random(A.RowDimension, A.ColumnDimension);
            GeneralMatrix C = A.ArrayMultiply(B);

            Assert.IsTrue(GeneralTests.Check(C.ArrayRightDivideEquals(B), A));
        }
Exemplo n.º 2
0
 public void Negative_ArrayMultiply()
 {
     S = A.ArrayMultiply(S);
 }