Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5405937

Browse files
authored
Merge pull request dynamicslab#4 from hazcat/ch01_fix
Change the element-wise multiply operator to the matrix multiply operator
2 parents bcfb8e9 + 510273c commit 5405937

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CH01/CH01_SEC04_2_Cement.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"# x = regress(b,A)\n",
5252
"\n",
5353
"# Alternative 2:\n",
54-
"x = np.linalg.pinv(A)*b"
54+
"x = np.linalg.pinv(A)@b"
5555
]
5656
},
5757
{

0 commit comments

Comments
 (0)