public void WideCondition()
 {
   ComplexFloatMatrix a = new ComplexFloatMatrix(2,3);
   a.GetConditionNumber();
 }
 public void LongCondition()
 {
   ComplexFloatMatrix a = new ComplexFloatMatrix(3,2);
   a.GetConditionNumber();
 } 
 public void Condition()
 {
   ComplexFloatMatrix a = new ComplexFloatMatrix(2);
   a[0,0] = new ComplexFloat(1.1f, 1.1f);
   a[0,1] = new ComplexFloat(2.2f, -2.2f);
   a[1,0] = new ComplexFloat(3.3f, 3.3f);
   a[1,1] = new ComplexFloat(4.4f, -4.4f);
   Assert.AreEqual(a.GetConditionNumber(),14.933,TOLERENCE);
 }