Conteúdo do Curso
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: Solving the Task Using SLE
Tarefa
Swipe to show code editor
We have already considered how to solve the SLE using inversed matrix. But we can also use np.linalg.solve(A, y)
method that calculates the solution of the SLE:
A * x = y
.
Your task is to solve the system using both these methods and compare the results:
- Use
np.linalg.solve()
method. - Use
np.inv()
method to calculate inversed matrix and provide solution using:x = A_inv @ y
.
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 2. Capítulo 8
Challenge: Solving the Task Using SLE
Tarefa
Swipe to show code editor
We have already considered how to solve the SLE using inversed matrix. But we can also use np.linalg.solve(A, y)
method that calculates the solution of the SLE:
A * x = y
.
Your task is to solve the system using both these methods and compare the results:
- Use
np.linalg.solve()
method. - Use
np.inv()
method to calculate inversed matrix and provide solution using:x = A_inv @ y
.
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 2. Capítulo 8
Mude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo