Closed seanxnie closed 1 month ago
Hi! This is currently not planned. Supporting multiplication between Matrix<T1, ...>
and Matrix<T2, ...>
would introduce a significant amount of complexity in the generics. I’d recommend converting your value based on f64
to Complex<f64>
before running the operation.
Hi, there, Scalars, for example,
Complex<f64>
numbers can perform math operations withf64
. Is it possible to implement such operations inalgebra::base::Matrix
? Thanks.