Type Alias extendr_api::scalar::rcplx_full::c64
source · pub type c64 = Complex<f64>;
Aliased Type§
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 PartialEq<Rcplx> for c64
impl PartialEq<Rcplx> for c64
use extendr_api::prelude::*;
test! {
assert!(<c64>::default().eq(&<Rcplx>::default()));
}