Ejemplo n.º 1
0
 /**
  * Compute index of element with largest absolute value (complex version).
  *
  * @param x matrix
  * @return index of element with largest absolute value.
  */
 public static int iamax(ComplexFloatMatrix x) {
   return NativeBlas.icamax(x.length, x.data, 0, 1) - 1;
 }