MCPcopy Create free account
hub / github.com/brainflow-dev/brainflow / mult

Method mult

nodejs_package/brainflow/complex.ts:63–67  ·  view source on GitHub ↗

* Multiply two complex numbers * @param other - The 2nd complex number operand * @returns The product of x / other

(other: complex)

Source from the content-addressed store, hash-verified

61 * @returns The product of x / other
62 */
63 public mult(other: complex): complex
64 {
65 return new complex (this.real * other.real - this._img * other.img,
66 this.real * other.img + this._img * other.real);
67 }
68
69 /**
70 * Divide two complex numbers

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected