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

Method sin

nodejs_package/brainflow/complex.ts:160–164  ·  view source on GitHub ↗

* Get the sine of the complex number * @returns The sine of the complex number

()

Source from the content-addressed store, hash-verified

158 * @returns The sine of the complex number
159 */
160 public sin(): complex
161 {
162 return new complex (
163 Math.cosh(this.img) * Math.sin(this.real), Math.sinh(this.img) * Math.cos(this.real));
164 }
165
166 /**
167 * Get the cosine of the complex number

Callers 5

tanMethod · 0.95
expMethod · 0.80
cosMethod · 0.80
fromPolarMethod · 0.80

Calls 1

cosMethod · 0.80