Open
Description
Hi there,
thanks a lot for the nice library! I hope this is the right place to ask questions! Please feel free to close if it's not.
I am having problems understanding why the following is not working.
use num_complex::Complex64;
use ndarray::arr1;
fn main() {
let complex_array = arr1(&[Complex64::from(1.0), Complex64::from(2.0)]);
let complex_scalar = Complex64::from(1.0);
let f_scalar = 1.0;
let f_array = arr1(&[1.0, 2.0]);
println!("{}", &complex_array * f_scalar);
println!("{}", &complex_array * complex_scalar);
println!("{}", complex_scalar * &complex_array);
// println!("{}", complex_scalar * &f_array); // <- not working
// println!("{}", f_scalar * complex_array); // <- not working
}
I could circumvent these problems by manually iterating through arrays but it makes the code less readable and less ergonomic. Maybe someone could help me understand why these operations are a problem.
Metadata
Metadata
Assignees
Labels
No labels