MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / mutableAdd

Method mutableAdd

JSAT/src/jsat/math/Complex.java:78–82  ·  view source on GitHub ↗

Alters this complex number as if an addition of another complex number was performed. @param r the real part of the other number @param i the imaginary part of the other number

(double r, double i)

Source from the content-addressed store, hash-verified

76 * @param i the imaginary part of the other number
77 */
78 public void mutableAdd(double r, double i)
79 {
80 this.real += r;
81 this.imag += i;
82 }
83
84 /**
85 * Alters this complex number to contain the result of the addition of another

Callers 8

addMethod · 0.95
mutableSubtractMethod · 0.95
twoLoopHpMethod · 0.45
lineSearchMethod · 0.45
zoomMethod · 0.45
lineSearchMethod · 0.45
updateMethod · 0.45
updateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected