Skip to content

Commit ce2933e

Browse files
committed
Update README
1 parent bdb4ac3 commit ce2933e

File tree

1 file changed

+9
-23
lines changed

1 file changed

+9
-23
lines changed

README.md

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,16 @@ Linear algebra package for [rust-ndarray](https://github.com/bluss/rust-ndarray)
88

99
Examples
1010
---------
11+
See [examples](https://github.com/termoshtt/ndarray-linalg/tree/master/examples) directory.
1112

12-
```rust
13-
extern crate ndarray;
14-
extern crate ndarray_linalg;
15-
16-
use ndarray::prelude::*;
17-
use ndarray_linalg::prelude::*;
18-
19-
fn main() {
20-
let a = arr2(&[[3.0, 1.0, 1.0], [1.0, 3.0, 1.0], [1.0, 1.0, 3.0]]);
21-
let (e, vecs) = a.clone().eigh().unwrap();
22-
println!("eigenvalues = \n{:?}", e);
23-
println!("V = \n{:?}", vecs);
24-
let av = a.dot(&vecs);
25-
println!("AV = \n{:?}", av);
26-
}
27-
```
13+
Versions
14+
---------
2815

29-
See complete example at [src/bin/main.rs](src/bin/main.rs).
16+
- v0.5.0 (not released)
17+
- **Breaking Change** Rewrite all algorithms to support complex numbers and general `ArrayBase`
3018

31-
Progress
32-
---------
33-
Some algorithms have not been implemented yet. See [#6](https://github.com/termoshtt/ndarray-linalg/issues/6).
19+
- v0.4.1
20+
- ADD: assertion [#31](https://github.com/termoshtt/ndarray-linalg/pull/31)
3421

35-
Similar Projects
36-
-----------------
37-
- [linxal](https://github.com/masonium/linxal)
22+
- v0.4.0
23+
- MOD: use ndarray v0.9

0 commit comments

Comments
 (0)