Beispiel #1
0
        static void Main(string[] args)
        {
            double[,] input = new double[5, 5];
            for (var i = 0; i < 5; i++)
            {
                for (var j = 0; j < 5; j++)
                {
                    input[i, j] = i;
                }
            }
            MyMatrix Matrix = new MyMatrix(input);

            Console.WriteLine(Matrix);
        }
Beispiel #2
0
 public MyMatrix(MyMatrix input) //constr1
 {
     this.matrix = input.matrix;
 }