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

Method add

nodejs_package/brainflow/complex.ts:43–46  ·  view source on GitHub ↗

* Add two complex numbers * @param other - The 2nd complex number operand * @returns x + other

(other: complex)

Source from the content-addressed store, hash-verified

41 * @returns x + other
42 */
43 public add(other: complex): complex
44 {
45 return new complex (this._real + other.real, this._img + other.img);
46 }
47
48 /**
49 * Subtract two complex numbers

Callers 2

get_avg_band_powersMethod · 0.80
perform_icaMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected