Skip to main content

C64

Type Alias C64 

Source
pub type C64 = Complex<f64>;
Expand description

A complex number with two 64-bit floating point fields. That is, the analogy of f64 to complex values.

Aliased Type§

#[repr(C)]
pub struct C64 { pub re: f64, pub im: f64, }

Fields§

§re: f64

Real portion of the complex number

§im: f64

Imaginary portion of the complex number

Trait Implementations§

Source§

impl Mul<&QubitSized<ProcessData>> for C64

Source§

type Output = QubitSized<ProcessData>

The resulting type after applying the * operator.
Source§

fn mul(self, channel: &Process) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<QubitSized<ProcessData>> for C64

Source§

type Output = QubitSized<ProcessData>

The resulting type after applying the * operator.
Source§

fn mul(self, channel: Process) -> Self::Output

Performs the * operation. Read more