From 4a1eff40dad4c100ba0f8afbd4725b327ca09212 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 6 Sep 2024 10:44:30 -0700 Subject: [PATCH] matrix multiplication ascii art --- fixed_wide_vectors/src/tests/tests.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fixed_wide_vectors/src/tests/tests.rs b/fixed_wide_vectors/src/tests/tests.rs index 91336ca..1c658dc 100644 --- a/fixed_wide_vectors/src/tests/tests.rs +++ b/fixed_wide_vectors/src/tests/tests.rs @@ -17,13 +17,13 @@ fn test_arithmetic(){ #[test] fn matrix_dot(){ - let rhs=Matrix4x2::new([ + let rhs=Matrix4x2::new([ [ 1.0, 2.0], [ 3.0, 4.0], [ 5.0, 6.0], [ 7.0, 8.0], - ]); - let lhs=Matrix3x4::new([ + ]); // | | | + let lhs=Matrix3x4::new([ // | | | [1.0, 2.0, 3.0, 4.0],// [ 50.0, 60.0], [5.0, 6.0, 7.0, 8.0],// [114.0,140.0], [9.0,10.0,11.0,12.0],// [178.0,220.0],