コード例 #1
0
        /// <summary>
        /// Returns true if both matrices contain the same entry values.
        /// </summary>
        public bool Equals(double[,] other)
        {
            if (other == null)
            {
                return(false);
            }

            return(MatrixFunctions.Equals(this.InnerMatrix, other));
        }