8000 DOC: Minor typo fix, hermefik -> hermefit. by jtpio · Pull Request #7418 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: Minor typo fix, hermefik -> hermefit. #7418

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

Merged
merged 1 commit into from
Mar 14, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
DOC: Minor typo fix, hermefik -> hermefit.
  • Loading branch information
jtpio committed Mar 14, 2016
commit 7ab13f537e80f564f3974463877f54c152616d76
2 changes: 1 addition & 1 deletion numpy/polynomial/hermite_e.py
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@ def hermefit(x, y, deg, rcond=None, full=False, w=None):

Examples
--------
>>> from numpy.polynomial.hermite_e import hermefik, hermeval
>>> from numpy.polynomial.hermite_e import hermefit, hermeval
>>> x = np.linspace(-10, 10)
>>> err = np.random.randn(len(x))/10
>>> y = hermeval(x, [1, 2, 3]) + err
Expand Down
0