From fe46d186ad7046af220173660cb1feb32af747a7 Mon Sep 17 00:00:00 2001 From: Michael Holroyd Date: Mon, 18 Jun 2018 09:07:35 -0400 Subject: [PATCH] minor typo --- src/Numerics/IntegralTransforms/Fourier.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Numerics/IntegralTransforms/Fourier.cs b/src/Numerics/IntegralTransforms/Fourier.cs index ea45243f..dddcdad9 100644 --- a/src/Numerics/IntegralTransforms/Fourier.cs +++ b/src/Numerics/IntegralTransforms/Fourier.cs @@ -176,7 +176,7 @@ namespace MathNet.Numerics.IntegralTransforms /// /// Packed Real-Complex forward Fast Fourier Transform (FFT) to arbitrary-length sample vectors. /// Since for real-valued time samples the complex spectrum is conjugate-even (symmetry), - /// the spectrum can be fully reconstructed form the positive frequencies only (first half). + /// the spectrum can be fully reconstructed from the positive frequencies only (first half). /// The data array needs to be N+2 (if N is even) or N+1 (if N is odd) long in order to support such a packed spectrum. /// /// Data array of length N+2 (if N is even) or N+1 (if N is odd).