Зміст курсу
Mathematics for Data Analysis and Modeling
Mathematics for Data Analysis and Modeling
1. Basic Mathematical Concepts and Definitions
2. Linear Algebra
Numerical Operations on Vectors and MatricesChallenge: Calculate the Matrix Multiplication ResultMatrix DeterminantScaling Factor of the Linear TransformationChallenge: Figures' Linear TransformationsInversed and Transposed MatricesSystem of Linear EquationsChallenge: Solving the Task Using SLEEigenvalues and Eigenvectors
Challenge: Calculate the Matrix Multiplication Result
Завдання
Swipe to start coding
Your task is to write code that will multiply two matrices, A
and B
, using the dot product between two vectors.
- Specify the shape of the resulting matrix (number of rows and columns).
- Calculate the resulting matrix using the dot product between the corresponding rows of the first matrix and columns of the second matrix.
Рішення
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 2. Розділ 2
Challenge: Calculate the Matrix Multiplication Result
Завдання
Swipe to start coding
Your task is to write code that will multiply two matrices, A
and B
, using the dot product between two vectors.
- Specify the shape of the resulting matrix (number of rows and columns).
- Calculate the resulting matrix using the dot product between the corresponding rows of the first matrix and columns of the second matrix.
Рішення
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 2. Розділ 2