This commit is contained in:
Gilles Sadowski 2021-05-23 04:29:07 +02:00
parent 7e219ce34f
commit 00e80fe763
2 changed files with 3 additions and 3 deletions

View File

@ -398,7 +398,7 @@ public class FastFourierTransform implements ComplexTransform {
*/
public enum Norm {
/**
* Should be passed to the constructor of {@link FastFourierTransformer}
* Should be passed to the constructor of {@link FastFourierTransform}
* to use the <em>standard</em> normalization convention. This normalization
* convention is defined as follows
* <ul>
@ -412,7 +412,7 @@ public class FastFourierTransform implements ComplexTransform {
STD,
/**
* Should be passed to the constructor of {@link FastFourierTransformer}
* Should be passed to the constructor of {@link FastFourierTransform}
* to use the <em>unitary</em> normalization convention. This normalization
* convention is defined as follows
* <ul>

View File

@ -87,7 +87,7 @@ public class FastSineTransform implements RealTransform {
*
* The first element of the specified data set is required to be {@code 0}.
*
* @throws MathIllegalArgumentException if the length of the data array is
* @throws IllegalArgumentException if the length of the data array is
* not a power of two, or the first element of the data array is not zero.
*/
@Override