コード例 #1
0
ファイル: ComplexFloat.java プロジェクト: hsaputra/nd4j
 @Override
 public IComplexNumber set(Number real, Number imag) {
   super.set(real.floatValue(), imag.floatValue());
   return this;
 }
コード例 #2
0
ファイル: ComplexFloat.java プロジェクト: hsaputra/nd4j
 @Override
 public ComplexFloat conji() {
   super.set(realComponent(), -imaginaryComponent());
   return this;
 }