コード例 #1
0
 /// <summary>Swaps the order of the two specified columns in the matrix</summary>
 /// <param name="row1">Column to swap</param>
 /// <param name="row2">Column to swap</param>
 public virtual void SwapColumns(Int32 column1, Int32 column2)
 {
     MatrixBase <T> .SwapColumns(this, column1, column2);
 }
コード例 #2
0
        /******************/
        /* PUBLIC METHODS */
        /******************/

        /// <summary>Swaps the order of the two specified columns in the matrix</summary>
        /// <param name="row1">Column to swap</param>
        /// <param name="row2">Column to swap</param>
        public void SwapColumns(Int32 column1, Int32 column2)
        {
            MatrixBase <Double> .SwapColumns(this, column1, column2);
        }