Closed PetrToman closed 12 years ago
BasicMLComplexData() constructor doesn't work:
public BasicMLComplexData(final double[] d) { this(d.length); System.arraycopy(d, 0, this.data, 0, d.length); // d is double[], but this.data is ComplexNumber[] }
Corrected this issue.
BasicMLComplexData() constructor doesn't work: