From ae249e2144fae4a1b9042ae34d0e08f210e6633d Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 17 Sep 2019 20:50:33 -0500 Subject: Push --- math2373/lab2.txt | 60 +------------------------------------------------------ 1 file changed, 1 insertion(+), 59 deletions(-) diff --git a/math2373/lab2.txt b/math2373/lab2.txt index dbd27c5..689a36b 100644 --- a/math2373/lab2.txt +++ b/math2373/lab2.txt @@ -9,14 +9,6 @@ A = 3 -8 1 0 29 -Aog=A - -Aog = - - 2 -1 4 -5 19 - -1 3 -2 -1 -18 - 0 1 5 -6 12 - 3 -8 1 0 29 A(1,:)=A(1,:)+A(2,:) @@ -27,50 +19,6 @@ A = 0 1 5 -6 12 3 -8 1 0 29 -A(2,:)=A(1,:)+A(1,:) - -A = - - 1 2 2 -6 1 - 2 4 4 -12 2 - 0 1 5 -6 12 - 3 -8 1 0 29 - -A(2,:)=A(1,:)-A(1,:) - -A = - - 1 2 2 -6 1 - 0 0 0 0 0 - 0 1 5 -6 12 - 3 -8 1 0 29 - -A(2,:)=A(1,:)-A(1,:) - -A = - - 1 2 2 -6 1 - 0 0 0 0 0 - 0 1 5 -6 12 - 3 -8 1 0 29 - -A=Aog - -A = - - 2 -1 4 -5 19 - -1 3 -2 -1 -18 - 0 1 5 -6 12 - 3 -8 1 0 29 - -A(1,:)=A(1,:)+A(2,:) - -A = - - 1 2 2 -6 1 - -1 3 -2 -1 -18 - 0 1 5 -6 12 - 3 -8 1 0 29 A(2,:)=A(2,:)+A(1,:) @@ -108,13 +56,7 @@ A = 0 0 -25 23 -77 0 -14 -5 18 26 -A(4,:)=A(2,:)1*4*A(2,:) - A(4,:)=A(2,:)1*4*A(2,:) - ↑ -{Error: Invalid expression. Check for missing multiplication operator, missing or -unbalanced delimiters, or other syntax error. To construct matrices, use brackets -instead of parentheses. -} + A(4,:)=A(2,:)+14*A(2,:) A = -- cgit v1.2.3 From 3159e0f13f94bca9067319925baece3e28060f93 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Tue, 17 Sep 2019 21:21:00 -0500 Subject: Cha ge aspace --- csci1913/lab1/lab1_strap012.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csci1913/lab1/lab1_strap012.py b/csci1913/lab1/lab1_strap012.py index 48e2ffe..6ed7377 100644 --- a/csci1913/lab1/lab1_strap012.py +++ b/csci1913/lab1/lab1_strap012.py @@ -54,7 +54,7 @@ def solving(v,q): return q else: if op(left(q)) in dispatcher: - newQ= dispatcher[op(left(q))](v,q) + newQ=dispatcher[op(left(q))](v,q) else: raise ValueError return solving(v,newQ) -- cgit v1.2.3