I'm e-learning Linear Algebra right now to have a good math foundation for Machine Learning. I was a History and Sociology major in college - so I didn't take any math. If you are like me, and working off an initial base of high school math, I would recommend the following (all free): Linear Algebra Foundations to Frontiers (UT Austin) Course: https://www.edx.org/course/linear-algebra-foundations-to-fro... Comments:…
Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
61–70 of 126 posts
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#62After reading this book (or during), take a look at the author's (Boyd) video lectures on linear dynamical systems: https://see.stanford.edu/Course/EE263/ There is a lot of overlap between the book and the course.
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#63Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#64I'm e-learning Linear Algebra right now to have a good math foundation for Machine Learning. I was a History and Sociology major in college - so I didn't take any math. If you are like me, and working off an initial base of high school math, I would recommend the following (all free): Linear Algebra Foundations to Frontiers (UT Austin) Course: https://www.edx.org/course/linear-algebra-foundations-to-fro... Comments:…
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#65Earlier quoted context omitted.
Thanks - I am doing that as well! I've been using MIT OpenCourseware for single variable calculus (and will do the same for multivariable). I fenced the parent post to Linear Algebra to not go too far away from the OP. I will certainly check out the Terrence Parr / Jeremy Howard site, and am super familiar with Khan Academy.
I came across-Calculus Made Easy by Silvanus Thompson,on someones twitter feed. Published in 1910 and far less scary and far more interesting to read than a lot of math text books. https://www.gutenberg.org/files/33283/33283-pdf.pdf
I really wish technical books were still written like this. Though if Thompson posted this on HN as a comment he probably would have been downvoted.
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#66Earlier quoted context omitted.
But there is the requirement that the other elements be equal to zero. It's right there in the sentence you quoted.
It's right there in the sentence you quoted. True enough, thanks -- fixed. Still a completely bogus definition.
You haven’t given any good reason why you think it’s “completely bogus” or “plain wrong”.
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#67The former is beginner stuff, and while convex optimization is more advanced, both are very engaging and clearly explained, with lots of anecdotes and practical examples!
[0] https://see.stanford.edu/Course/EE263
[1] https://www.youtube.com/playlist?list=PL3940DD956CDF0622
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#68Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#69I'm e-learning Linear Algebra right now to have a good math foundation for Machine Learning. I was a History and Sociology major in college - so I didn't take any math. If you are like me, and working off an initial base of high school math, I would recommend the following (all free): Linear Algebra Foundations to Frontiers (UT Austin) Course: https://www.edx.org/course/linear-algebra-foundations-to-fro... Comments:…
I just completed my final exam at CMU in their graduate intro to ML class (10-601). Having gone through the LA course was essential to my success. But equally important (if not more) to ML is a solid foundation in probability.
Re: Introduction to Applied Linear Algebra: Vectors, Matrices, and Least Squares
#70I'm going to complain about this every chance I get. A 2D vector, we generally store as [x, y, 0]. What's the extra 0? The homogeneous coordinate. A 2D point, we generally store as [x, y, 1]. That extra 1 is the homogeneous coordinate, and since it's there, it means "and apply translations!" If I have a 2D transform, I put the translation component in the last row or column, depending on if you pre-multiply or post-m…
I hope you are just trolling. Homogeneous coordinates are for projection, not for selecting translation.
One of the use cases for homogeneous coordinates is certainly to be able to achieve translation.