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

Method conj

nodejs_package/brainflow/complex.ts:113–116  ·  view source on GitHub ↗

* Get the conjugate of the complex number * @returns The conjugate of the complex number: a + (-bi)

()

Source from the content-addressed store, hash-verified

111 * @returns The conjugate of the complex number: a + (-bi)
112 */
113 public conj(): complex
114 {
115 return new complex (this.real, -this.img);
116 }
117
118 /**
119 * Get the negation of the complex number

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected