File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/doc/ndarray_for_numpy_users Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 145
145
//! so it's not restricted to 1-D and 2-D vectors and matrices. Also, operators
146
146
//! operate elementwise by default, so the multiplication operator `*` performs
147
147
//! elementwise multiplication instead of matrix multiplication. (You have to
148
- //! specifically call `.dot()` if you want matrix multiplication.) Linear algebra
149
- //! with `ndarray` is provided by other crates, e.g.
150
- //! [ `ndarray-linalg`](https://crates.io/crates/ndarray-linalg) and
151
- //! [`linxal `](https://crates.io/crates/linxal ).
148
+ //! specifically call `.dot()` if you want matrix multiplication.)
149
+ //!
150
+ //! Linear algebra with `ndarray` is provided by another crates,
151
+ //! [`ndarray-linalg `](https://crates.io/crates/ndarray-linalg ).
152
152
//!
153
153
//! # Rough `ndarray`–NumPy equivalents
154
154
//!
You can’t perform that action at this time.
0 commit comments