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.
1 parent 5f658d2 commit c837076Copy full SHA for c837076
examples/solveh.rs
@@ -10,7 +10,7 @@ fn solve() -> Result<(), error::LinalgError> {
10
let b: Array1<c64> = random(3);
11
println!("b = {:?}", &b);
12
let x = a.solveh(&b)?;
13
- println!("Ax = {:?}", a.dot(&x));;
+ println!("Ax = {:?}", a.dot(&x));
14
Ok(())
15
}
16
0 commit comments