Matrix multiplication part II
Let's put your matrix multiplication skills to the test.
Diese Übung ist Teil des Kurses
Building Recommendation Engines with PySpark
Anleitung zur Übung
- Use the
.shapeattribute to understand the dimensions of matricesCandD, and determine whether these two matrices can be multiplied together or not. - If they can be multiplied, use the
np.matmul()method to multiply them. If not, setC_times_DtoNone.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Print the dimensions of C
print(____.____)
# Print the dimensions of D
print(____.____)
# Can C and D be multiplied together?
C_times_D = ____