This type of short video about 1-2 topics is really helpful. Easy to find the info needed. Thanks!
@noahrubin3753 жыл бұрын
Clear and straight to the point. Thank you!
@cernejr3 жыл бұрын
Next time please also discuss numerical stability of the algorithm and rounding-error-creep. Those are important considerations when doing numerical computations using floating point numbers.
@retinapeg18463 жыл бұрын
Totally agree, especially in what I do in trading.
@Singularitarian3 жыл бұрын
But note that in practice you almost never want to compute the inverse of a matrix explicitly. This is one of the important lessons of numerical linear algebra. For example, when solving Ax = b, you'd typically compute the LU factorization of A (or perhaps the QR factorization of A) rather than explicitly computing the inverse of A. When changing basis from the standard basis to the basis consisting of the columns of a matrix Q, we are given a vector x and we need to compute y = Q^{-1} x. But the best way to do that is to solve the system Qy = x. To solve that system, you would not compute the inverse of Q explicitly.
@retinapeg18463 жыл бұрын
Why are the off diagonals non-zero of np.matmul(M,Minv)? Is this due to the underlying precision of the C code running under the hood of numpy?
@TopicsInControlSystems2 жыл бұрын
I don't think it's C related. It is the fact the MCU will be operating with 32-bit or 64-bit resolution.
@williamgomez60873 жыл бұрын
Very usefull beacuse im taking linera algebra in university and im looking for tools to help me out in everytnhing im learning
@adilmajeed84393 жыл бұрын
Please share the vendor name for the desk
@chiragcs22Ай бұрын
Have my exam tomorrow . Now I'm Fully equipped Thanks
@tomoki-v6o3 жыл бұрын
The matrix you used is the stiffness matrix of 4 springs connected in serries with stiffness of one
@lucasreingo3 жыл бұрын
I was there when it was written
@koramawin61343 жыл бұрын
is there a way to represent that matrix in 2-decimal format?
@owaisch34422 жыл бұрын
is there a way to vectorize the inverse operation if we have two or more square matrices?
@brianbaker49293 жыл бұрын
I believe M @ Minv and M.dot(Minv) would also do the same matrix multiplication operation with 2D numpy arrays.
@sukhamritsingh34203 жыл бұрын
Wanted to ask how was your journey with Open University. I'm planning to do a bsc mathematics and statistics honours :) for data science. Would love your opinion if it's a good choice :)
@seungsooim21832 жыл бұрын
what about coding it from scratch?
@8koi1393 жыл бұрын
I choked on my breakfast in the intro lol
@SrNCJesus3 жыл бұрын
A multiplicação da matriz inversa pela matriz não deveria de resultar na matriz identidade? E não numa triangular superior...