NumPy Tricks and Pitfalls
nbviewer.jupyter.org
NumPy Tricks and Pitfalls
1–10 of 28 posts
Re: NumPy Tricks and Pitfalls
#2I should probably ask this somewhere else but I'm not sure what the appropriate forum is, if you could point me to where I should that would be great. Thank you!
Re: NumPy Tricks and Pitfalls
#3I'm an engineering student that does programming and am wondering, can I ask what are some good resources to gain the appropriate background that would allow me to understand more of this notebook? I have used tools like Numpy but probably not very efficiently without understanding their strengths and weaknesses. What books or online courses should I look into to know about memory, flops, and things like that? I shou…
Re: NumPy Tricks and Pitfalls
#4I'm an engineering student that does programming and am wondering, can I ask what are some good resources to gain the appropriate background that would allow me to understand more of this notebook? I have used tools like Numpy but probably not very efficiently without understanding their strengths and weaknesses. What books or online courses should I look into to know about memory, flops, and things like that? I shou…
Eventually you’ll pick up tips from all your online resources, and you’ll realize you could have done some things better the whole time.
Re: NumPy Tricks and Pitfalls
#5I'm an engineering student that does programming and am wondering, can I ask what are some good resources to gain the appropriate background that would allow me to understand more of this notebook? I have used tools like Numpy but probably not very efficiently without understanding their strengths and weaknesses. What books or online courses should I look into to know about memory, flops, and things like that? I shou…
You shouldn’t be afraid to fail, man! Instead of doing something in Matlab, try it in numpy and just do some research to figure out what you want to do. Eventually you’ll pick up tips from all your online resources, and you’ll realize you could have done some things better the whole time.
Re: NumPy Tricks and Pitfalls
#6Re: NumPy Tricks and Pitfalls
#7Earlier quoted context omitted.
You shouldn’t be afraid to fail, man! Instead of doing something in Matlab, try it in numpy and just do some research to figure out what you want to do. Eventually you’ll pick up tips from all your online resources, and you’ll realize you could have done some things better the whole time.
Yes! There's many ways to learn. One way is essentially the brute force method: Google every Single thing until you get it. That's how I learned Nimoy when doing some basic image analysis.
Re: NumPy Tricks and Pitfalls
#8I still don't really understand why someone would choose to use NumPy when the numerical story in Rust is now so good.
Re: NumPy Tricks and Pitfalls
#9I still don't really understand why someone would choose to use NumPy when the numerical story in Rust is now so good.
FWIW this is the same situation NumPy was in a while back ago, but instead of boldly asserting that what they had was enough, they looked to other prevalent languages to figure out what was missing and packages like pandas and statsmodels came out.