Skip to content

Commit

Permalink
Update README-quick-start.md
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
joelchen authored and adamreichold committed Dec 22, 2023
1 parent fa57078 commit 174ca76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README-quick-start.md
Expand Up @@ -170,7 +170,7 @@ fn main() {
println!("b shape {:?}", &b.shape());

let b = b.into_shape((4,1)).unwrap(); // reshape b to shape [4, 1]
println!("b shape {:?}", &b.shape());
println!("b shape after reshape {:?}", &b.shape());

println!("{}", a.dot(&b)); // [1, 4] x [4, 1] -> [1, 1]
println!("{}", a.t().dot(&b.t())); // [4, 1] x [1, 4] -> [4, 4]
Expand Down

0 comments on commit 174ca76

Please sign in to comment.