Skip to main content

J0_ZEROS_VALUE

Static J0_ZEROS_VALUE 

Source
pub(crate) static J0_ZEROS_VALUE: [u64; 48]
Expand description

Roots and values for extremums and J0 zeros.

Generated by MPFR:

let mut arr = vec![];
for zeros in J0_ZEROS.iter() {
    let mpfr = Float::with_val(107, f64::from_bits(zeros.1)).j0();
    arr.push(mpfr.to_f64().to_bits());
}
println!(
    "arr: [{}]",
    arr.iter()
        .map(|x| format!("0x{:016x}", x))
        .collect::<Vec<_>>()
        .join(", ")
);