public void ReverseColAndOthersMet()
        {
            CSqMatrix mat = new CSqMatrix(new Complex[, ] {
                { new Complex(1, 4), 12, 4 },
                { 0, 9, 30 },
                { 40, 5, 3 }
            });

            mat.ReversColumns(1, 2); mat.Show(); "".Show();

            mat.MultplyRows(2, 1).Show();

            mat.GetColumn(0).Show();
            mat.GetColumn(1).Show();
            mat.GetColumn(2).Show();
        }