Video není dostupné.
Omlouváme se.

How to multiply matrices in Python (Spyder IDE)

Sdílet
Vložit
  • čas přidán 7. 08. 2024
  • ❖ This tutorial video provides a basic introduction to How to Multiply Matrices in Python. We have used Spyder IDE for programming in the Python language. Also, this video contains many examples and practice problems on Matrix Multiplication.
    ❖ Any matrix can only be multiplied by another matrix if
    The number of columns of the first matrix = The number of rows of the second matrix.
    Otherwise, the answer will be undefined.
    ❖ Multiplication process (AB):
    Multiply each row from the 1st matrix (A) by each column from the 2nd matrix (B),
    and considering we will get only one element from each process.
    The size of the new matrix (AB) is based on the number of rows of the first matrix (A) and the number of columns in the second matrix (B)
    ❖ The number of rows and columns that a matrix has is called its size, its order, or its dimension.
    ❖ In this video, we will learn:
    0:00 Introduction
    01:43 Solve 1
    04:55 Solve 2
    The link to the Linear Algebra playlist:
    • Linear Algebra
    My Website:
    www.Mulkek.com
    Subscribe to My Channel to check out for more videos:
    / mulkek

Komentáře • 2

  • @pinklady7184
    @pinklady7184 Před 3 lety +2

    Lovely. Thank you for the tutorial.

    • @Mulkek
      @Mulkek  Před 3 lety +2

      Thanks for watching 😇