-
-
Notifications
You must be signed in to change notification settings - Fork 29
[numpy, scipy] Edits and Corrections #122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
lectures/scipy.md
Outdated
@@ -63,7 +63,8 @@ from numpy.fft import fft, ifft | |||
from numpy.lib.scimath import * | |||
``` | |||
|
|||
However, it's more common and better practice to use NumPy functionality explicitly | |||
However, it's more common and better practice to use NumPy functionality explicitly. One good feature of Numpy is it has a faster processing time than other Python libraries. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Horace510 : The statement you added is not precise enough. Sometimes other libraries are faster. (Also, Numpy should be NumPy.)
Also, the point here is that you can bring in NumPy implicitly, via SciPy, or explicitly. It's better to be explict.
How about adding ", rather than implicitly via SciPy" ?
Thanks @mmcky , this is good to go. |
thanks @jstac |
@shlff @jstac
I added one useful feature of the Numpy to the file, it was one of the suggestions I made in my email.
Thanks!