/// <summary> /// Multiply the current square matrix with the given one. /// </summary> /// <param name="other"> Square matrix to muliplied by. </param> /// <returns> Modifed current square matrix. </returns> public SquareMatrix Multiplication(SquareMatrix other) { return((SquareMatrix)base.Multiplication(other)); }
/// <summary> /// Add given square matrix to current square matrix. /// </summary> /// <param name="other"> Square matrix to be added. </param> /// <returns> Modifed current square matrix. </returns> public SquareMatrix Add(SquareMatrix other) { return((SquareMatrix)base.Add(other)); }