/*
* Created by SharpDevelop.
* User: Marc Jr. Landolt
* Date: 07.09.2006
* Time: 21::05
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
namespace Visitenkarte
{
///
/// Description of Matrix.
///
public class Matrix
{
protected static bool debug=false;
protected double[][] matrix;
public Matrix(double[][] m1)
{
matrix = new double[m1.Length][]; // WICHTIG, SO WIRD EIN 2-Dimensonales Array inizialisiert...
for(int i = 0; i