diff --git a/wecopttool/core.py b/wecopttool/core.py index 1a1f0b42..c975b44f 100644 --- a/wecopttool/core.py +++ b/wecopttool/core.py @@ -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)`. @@ -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`. @@ -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`.