You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/specs/fftpack.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1143,7 +1143,7 @@ Pure function.
1143
1143
1144
1144
### Syntax
1145
1145
1146
-
`result = [[fftpack(module):dct(interface)]](x [, n, t])`
1146
+
`result = [[fftpack(module):dct(interface)]](x [, n, type])`
1147
1147
1148
1148
### Argument
1149
1149
@@ -1155,7 +1155,7 @@ The data to transform.
1155
1155
This argument is `intent(in)` and `optional`.
1156
1156
Defines the length of the DCT. If `n` is not specified (the default) then `n = size(x)`. If `n <= size(x)`, `x` is truncated, if `n > size(x)`, `x` is zero-padded.
1157
1157
1158
-
`t`: Shall be an `integer` scalar, equal to `1`, `2` or `3`.
1158
+
`type`: Shall be an `integer` scalar, equal to `1`, `2` or `3`.
1159
1159
This argument is `intent(in)` and `optional`.
1160
1160
Defines the type of DCT to be performed. The default type is `2`.
1161
1161
@@ -1166,9 +1166,9 @@ Returns a `real` and rank-1 array, the DCT type-`t` of the input data `x`.
`result = [[fftpack(module):idct(interface)]](x [, n, t])`
1204
+
`result = [[fftpack(module):idct(interface)]](x [, n, type])`
1205
1205
1206
1206
### Argument
1207
1207
@@ -1213,7 +1213,7 @@ Transformed data to invert.
1213
1213
This argument is `intent(in)` and `optional`.
1214
1214
Defines the length of the Fourier transform. If `n` is not specified (the default) then `n = size(x)`. If `n <= size(x)`, `x` is truncated, if `n > size(x)`, `x` is zero-padded.
1215
1215
1216
-
`t`: Shall be an `integer` scalar, equal to `1` or `2`.
1216
+
`type`: Shall be an `integer` scalar, equal to `1` or `2`.
1217
1217
This argument is `intent(in)` and `optional`.
1218
1218
Defines the type of the IDCT to be performed. The default type is `2`.
1219
1219
@@ -1224,19 +1224,19 @@ Returns a `real` and rank-1 array, the IDCT type-`t` of the input data `x`.
0 commit comments