We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restore outer product removed in #41
The text was updated successfully, but these errors were encountered:
We can use ndarray::linalg::Dot to calc outer product:
ndarray::linalg::Dot
let a: Array1<f64> = random(3); let b: Array1<f64> = random(4); let a = into_col_vec(a); let b = into_row_vec(b); let ab = a.dot(&b);
but this gives Array2<A> only (i.e. it cannot generate RcArray2<A> without into_shared). Generalized Dot #39 will help this.
Array2<A>
RcArray2<A>
into_shared
Sorry, something went wrong.
transfer to #29
No branches or pull requests
Restore outer product removed in #41
The text was updated successfully, but these errors were encountered: