File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 99//! Using the Cholesky decomposition of `A` for various operations, where `A`
1010//! is a Hermitian (or real symmetric) positive definite matrix:
1111//!
12- //! ```no_run
12+ //! ```
1313//! #[macro_use]
1414//! extern crate ndarray;
1515//! extern crate ndarray_linalg;
Original file line number Diff line number Diff line change 44//!
55//! Solve `A * x = b`:
66//!
7- //! ```no_run
7+ //! ```
88//! #[macro_use]
99//! extern crate ndarray;
1010//! extern crate ndarray_linalg;
2828//! coefficient matrix `A`, it's faster to compute the LU factorization once at
2929//! the beginning than solving directly using `A`:
3030//!
31- //! ```no_run
31+ //! ```
3232//! # extern crate ndarray;
3333//! # extern crate ndarray_linalg;
3434//!
Original file line number Diff line number Diff line change 77//!
88//! Solve `A * x = b`, where `A` is a Hermitian (or real symmetric) matrix:
99//!
10- //! ```no_run
10+ //! ```
1111//! #[macro_use]
1212//! extern crate ndarray;
1313//! extern crate ndarray_linalg;
3232//! Hermitian or real symmetric coefficient matrix `A`, it's faster to compute
3333//! the factorization once at the beginning than solving directly using `A`:
3434//!
35- //! ```no_run
35+ //! ```
3636//! # extern crate ndarray;
3737//! # extern crate ndarray_linalg;
3838//! use ndarray::prelude::*;
You can’t perform that action at this time.
0 commit comments