setComplexMatrix method

EasyClip setComplexMatrix(
  1. String chr,
  2. List<List<double>> real,
  3. List<List<double>> imag
)

Implementation

EasyClip setComplexMatrix( String chr, List<List<double>> real, List<List<double>> imag ){
	_setEnv();
	_param.array().setComplexMatrix( ClipMath.char( chr ), MathMatrix.arrayToMatrix( real ), MathMatrix.arrayToMatrix( imag ), false );
	return this;
}