Skip to content

Commit

Permalink
fixed typo in derivative docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcdevin committed Oct 12, 2023
1 parent f1395c8 commit 3364a37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wecopttool/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,7 @@ def time_mat(self) -> ndarray:
"""Matrix to create time-series from Fourier coefficients.
For some array of Fourier coefficients :python:`x`
(excluding the sine component of the highest freequency), size
(excluding the sine component of the highest frequency), size
:python:`(2*nfreq, ndof)`, the time series is obtained via
:python:`time_mat @ x`, also size
:python:`(2*nfreq, ndof)`.
Expand All @@ -1069,7 +1069,7 @@ def derivative_mat(self) -> ndarray:
some quantity.
For some array of Fourier coefficients :python:`x`
(excluding the sine component of the highest freequency), size
(excluding the sine component of the highest frequency), size
:python:`(2*nfreq, ndof)`, the Fourier coefficients of the
derivative of :python:`x` are obtained via
:python:`derivative_mat @ x`.
Expand All @@ -1082,7 +1082,7 @@ def derivative2_mat(self) -> ndarray:
some quantity.
For some array of Fourier coefficients :python:`x`
(excluding the sine component of the highest freequency), size
(excluding the sine component of the highest frequency), size
:python:`(2*nfreq, ndof)`, the Fourier coefficients of the
second derivative of :python:`x` are obtained via
:python:`derivative2_mat @ x`.
Expand Down

0 comments on commit 3364a37

Please sign in to comment.