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

Method mutableSubtract

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

Alters this complex number as if a subtraction 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

108 * @param i the imaginary part of the other number
109 */
110 public void mutableSubtract(double r, double i)
111 {
112 mutableAdd(-r, -i);
113 }
114
115 /**
116 * Alters this complex number to contain the result of the subtraction of another

Callers 6

subtractMethod · 0.95
iterationStepMethod · 0.45
twoLoopHpMethod · 0.45
lineSearchMethod · 0.45
updateMethod · 0.45
updateMethod · 0.45

Calls 1

mutableAddMethod · 0.95

Tested by

no test coverage detected