... What part of linear algebra isn't computational?
Computational Linear Algebra
11–20 of 59 posts
Re: Computational Linear Algebra
#12... What part of linear algebra isn't computational?
Also, sometimes algorithms can be invented and empirically shown to have good complexity properties before there are proofs.
Re: Computational Linear Algebra
#13Re: Computational Linear Algebra
#14... What part of linear algebra isn't computational?
Re: Computational Linear Algebra
#15Why 'computational' and not 'numerical'?
> Jeremy and I developed this material for a numerical linear algebra course we taught in the University of San Francisco’s Masters of Analytics program, and it is the first ever numerical linear algebra course, to our knowledge, to be completely centered around practical applications and to use cutting edge algorithms and tools,
Re: Computational Linear Algebra
#16... What part of linear algebra isn't computational?
Re: Computational Linear Algebra
#17... What part of linear algebra isn't computational?
Re: Computational Linear Algebra
#18Thanks for your hard work, Rachel! Really curious what you two will get up to next.
Re: Computational Linear Algebra
#19Re: Computational Linear Algebra
#20> Locality: traditional runtime computations focus on Big O, the number of operations computed. However, for modern computing, moving data around in memory can be very time-consuming I need to nitpick here... Big O notation is a way to describe growth rates of functions. You can count data movements (or anything else) with Big O.
Moreover, "moving data around in memory can be very time-consuming" means that in the end, it is still about time, not about memory. So the correct way would be to translate memory access to time, but that means modelling the memory hierarchy, modelling caches in general, and finally perhaps modelling the specifically used caching strategies.