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

Skip to content

Commit 510273c

Browse files
committed
Change the element-wise multiply operator to the matrix multiply operator.
1 parent bcfb8e9 commit 510273c

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)