Skip to main content

cufftComplex

Type Alias cufftComplex 

Source
pub type cufftComplex = cuComplex;
Expand description

A single-precision, floating-point complex data type that consists of interleaved real and imaginary components.

Aliased Type§

#[repr(C, align(8))]
pub struct cufftComplex { pub x: f32, pub y: f32, }

Fields§

§x: f32§y: f32