Inizia subitoInizia gratis

Matrix multiplication part II

Let's put your matrix multiplication skills to the test.

Questo esercizio fa parte del corso

Building Recommendation Engines with PySpark

Visualizza corso

Istruzioni dell'esercizio

  • Use the .shape attribute to understand the dimensions of matrices C and D, 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, set C_times_D to None.

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

# Print the dimensions of C
print(____.____)

# Print the dimensions of D
print(____.____)

# Can C and D be multiplied together?
C_times_D = ____
Modifica ed esegui il codice