menu
Complex
import { Complex } from "destack:math";
Complex number with floating-point components.
1export struct Complex<T: Float> {2 real: T;3 imaginary: T;4}Members
real: TThe real component.
imaginary: TThe imaginary component.
import { Complex } from "destack:math";
Complex number with floating-point components.
1export struct Complex<T: Float> {2 real: T;3 imaginary: T;4}real: TThe real component.
imaginary: TThe imaginary component.