Esempio n. 1
0
 public static Complex[,] Divide(this Complex[,] a, Complex b)
 {
     return(a.Multiply(1.0 / b));
 }