-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: add fft/base/fftpack/ndarray/rffti
#13527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
030a34a
60f690c
a56e1f1
bfb49ed
77183d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,135 @@ | ||
| <!-- | ||
|
|
||
| @license Apache-2.0 | ||
|
|
||
| Copyright (c) 2026 The Stdlib Authors. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
|
|
||
| --> | ||
|
|
||
| # rffti | ||
|
|
||
| > Initialize a workspace array for performing a real-valued Fourier transform on a one-dimensional ndarray. | ||
|
|
||
| <section class="intro"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.intro --> | ||
|
|
||
| <section class="usage"> | ||
|
|
||
| ## Usage | ||
|
|
||
| ```javascript | ||
| var rffti = require( '@stdlib/fft/base/fftpack/ndarray/rffti' ); | ||
| ``` | ||
|
|
||
| #### rffti( arrays ) | ||
|
|
||
| Initializes a workspace array for performing a real-valued Fourier transform on a one-dimensional ndarray. | ||
|
|
||
| ```javascript | ||
| var Float64Vector = require( '@stdlib/ndarray/vector/float64' ); | ||
| var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); | ||
| var Slice = require( '@stdlib/slice/ctor' ); | ||
| var slice = require( '@stdlib/ndarray/slice' ); | ||
|
|
||
| var N = 8; | ||
| var len = scalar2ndarray( N, { | ||
| 'dtype': 'int32' | ||
| }); | ||
|
|
||
| var workspace = new Float64Vector( ( 2*N ) + 34 ); | ||
|
|
||
| var out = rffti( [ len, workspace ] ); | ||
| // returns <ndarray> | ||
|
|
||
| var bool = ( out === workspace ); | ||
| // returns true | ||
|
|
||
| var twiddleFactors = slice( workspace, new Slice( N, 2*N ) ); | ||
| // returns <ndarray>[ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] | ||
|
|
||
| var factors = slice( workspace, new Slice( 2*N, ( 2*N ) + 4 ) ); | ||
| // returns <ndarray>[ 8, 2, 2, 4 ] | ||
| ``` | ||
|
|
||
| The function has the following parameters: | ||
|
|
||
| - **arrays**: array-like object containing the following ndarrays: | ||
|
|
||
| - a zero-dimensional ndarray containing the length of the sequence to transform. | ||
| - a one-dimensional input ndarray. | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.usage --> | ||
|
|
||
| <section class="notes"> | ||
|
|
||
| ## Notes | ||
|
|
||
| - If provided an empty one-dimensional input ndarray, the function returns the output ndarray unchanged. | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.notes --> | ||
|
|
||
| <section class="examples"> | ||
|
|
||
| ## Examples | ||
|
|
||
| <!-- eslint no-undef: "error" --> | ||
|
|
||
| ```javascript | ||
| var Float64Vector = require( '@stdlib/ndarray/vector/float64' ); | ||
| var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); | ||
| var ndarray2array = require( '@stdlib/ndarray/to-array' ); | ||
| var rffti = require( '@stdlib/fft/base/fftpack/ndarray/rffti' ); | ||
|
|
||
| var opts = { | ||
| 'dtype': 'int32' | ||
| }; | ||
|
|
||
| var N = 8; | ||
|
|
||
| var workspace = new Float64Vector( ( 2*N ) + 34 ); | ||
| console.log( ndarray2array( workspace ) ); | ||
|
|
||
| var len = scalar2ndarray( N, opts ); | ||
|
|
||
| var out = rffti( [ len, workspace ] ); | ||
| console.log( ndarray2array( out ) ); | ||
| ``` | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.examples --> | ||
|
|
||
| <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
|
||
| <section class="related"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.related --> | ||
|
|
||
| <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="links"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.links --> |
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,112 @@ | ||||||||||
| /** | ||||||||||
| * @license Apache-2.0 | ||||||||||
| * | ||||||||||
| * Copyright (c) 2026 The Stdlib Authors. | ||||||||||
| * | ||||||||||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||||||||||
| * you may not use this file except in compliance with the License. | ||||||||||
| * You may obtain a copy of the License at | ||||||||||
| * | ||||||||||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||||||||||
| * | ||||||||||
| * Unless required by applicable law or agreed to in writing, software | ||||||||||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||||||||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||||||
| * See the License for the specific language governing permissions and | ||||||||||
| * limitations under the License. | ||||||||||
| */ | ||||||||||
|
|
||||||||||
| 'use strict'; | ||||||||||
|
|
||||||||||
| // MODULES // | ||||||||||
|
|
||||||||||
| var bench = require( '@stdlib/bench' ); | ||||||||||
| var Float64Vector = require( '@stdlib/ndarray/vector/float64' ); | ||||||||||
| var isnan = require( '@stdlib/math/base/assert/is-nan' ); | ||||||||||
| var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); | ||||||||||
| var format = require( '@stdlib/string/format' ); | ||||||||||
| var pkg = require( './../package.json' ).name; | ||||||||||
| var rffti = require( './../lib' ); | ||||||||||
|
|
||||||||||
|
|
||||||||||
| // VARIABLES // | ||||||||||
|
|
||||||||||
| var options = { | ||||||||||
| 'dtype': 'int32' | ||||||||||
| }; | ||||||||||
|
|
||||||||||
|
|
||||||||||
| // FUNCTIONS // | ||||||||||
|
|
||||||||||
| /** | ||||||||||
| * Creates a benchmark function. | ||||||||||
| * | ||||||||||
| * @private | ||||||||||
| * @param {PositiveInteger} N - sequence length | ||||||||||
| * @returns {Function} benchmark function | ||||||||||
| */ | ||||||||||
| function createBenchmark( N ) { | ||||||||||
| var workspace = new Float64Vector( ( 2*N ) + 34 ); | ||||||||||
| var len = scalar2ndarray( N, options ); | ||||||||||
|
|
||||||||||
|
Comment on lines
+50
to
+51
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| return benchmark; | ||||||||||
|
|
||||||||||
| /** | ||||||||||
| * Benchmark function. | ||||||||||
| * | ||||||||||
| * @private | ||||||||||
| * @param {Benchmark} b - benchmark instance | ||||||||||
| */ | ||||||||||
| function benchmark( b ) { | ||||||||||
| var v; | ||||||||||
| var i; | ||||||||||
|
|
||||||||||
| b.tic(); | ||||||||||
| for ( i = 0; i < b.iterations; i++ ) { | ||||||||||
| v = rffti( [ len, workspace ] ); | ||||||||||
| if ( typeof v !== 'object' ) { | ||||||||||
| b.fail( 'should return an ndarray' ); | ||||||||||
| } | ||||||||||
| } | ||||||||||
| b.toc(); | ||||||||||
| if ( isnan( v.get( N ) ) ) { | ||||||||||
| b.fail( 'should not return NaN' ); | ||||||||||
| } | ||||||||||
| b.pass( 'benchmark finished' ); | ||||||||||
| b.end(); | ||||||||||
| } | ||||||||||
| } | ||||||||||
|
|
||||||||||
|
|
||||||||||
| // MAIN // | ||||||||||
|
|
||||||||||
| /** | ||||||||||
| * Main execution sequence. | ||||||||||
| * | ||||||||||
| * @private | ||||||||||
| */ | ||||||||||
| function main() { | ||||||||||
| var lengths; | ||||||||||
| var N; | ||||||||||
| var f; | ||||||||||
| var i; | ||||||||||
|
|
||||||||||
| lengths = [ | ||||||||||
| 8, | ||||||||||
| 16, | ||||||||||
| 32, | ||||||||||
| 64, | ||||||||||
| 128, | ||||||||||
| 256, | ||||||||||
| 512, | ||||||||||
| 1024 | ||||||||||
| ]; | ||||||||||
|
|
||||||||||
| for ( i = 0; i < lengths.length; i++ ) { | ||||||||||
| N = lengths[ i ]; | ||||||||||
| f = createBenchmark( N ); | ||||||||||
| bench( format( '%s:N=%d', pkg, N ), f ); | ||||||||||
| } | ||||||||||
| } | ||||||||||
|
|
||||||||||
| main(); | ||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,39 @@ | ||||||||||||||||||
|
|
||||||||||||||||||
| {{alias}}( arrays ) | ||||||||||||||||||
| Initializes a workspace array for performing a real-valued Fourier | ||||||||||||||||||
| transform on a one-dimensional ndarray. | ||||||||||||||||||
|
|
||||||||||||||||||
| If provided an empty input ndarray, the function returns the output ndarray | ||||||||||||||||||
| unchanged. | ||||||||||||||||||
|
|
||||||||||||||||||
| Parameters | ||||||||||||||||||
| ---------- | ||||||||||||||||||
| arrays: ArrayLikeObject<ndarray> | ||||||||||||||||||
| Array-like object containing the following ndarrays: | ||||||||||||||||||
|
|
||||||||||||||||||
| - a zero-dimensional ndarray containing the length of the sequence to | ||||||||||||||||||
| transform. | ||||||||||||||||||
| - a one-dimensional input ndarray. | ||||||||||||||||||
|
|
||||||||||||||||||
| Returns | ||||||||||||||||||
| ------- | ||||||||||||||||||
| out: ndarray | ||||||||||||||||||
| Output ndarray. | ||||||||||||||||||
|
|
||||||||||||||||||
| Examples | ||||||||||||||||||
| -------- | ||||||||||||||||||
| > var N = 8; | ||||||||||||||||||
| > var workspace = new {{alias:@stdlib/ndarray/vector/float64}}( ( 2*N ) + 34 ); | ||||||||||||||||||
| > var len = {{alias:@stdlib/ndarray/from-scalar}}( N, { 'dtype': 'int32' }); | ||||||||||||||||||
| > var out = {{alias}}( [ len, workspace ] ) | ||||||||||||||||||
| <ndarray> | ||||||||||||||||||
| > var bool = ( out === workspace ) | ||||||||||||||||||
| true | ||||||||||||||||||
| > var twiddleFactors = {{alias:@stdlib/ndarray/slice}}( workspace, new {{alias:@stdlib/slice/ctor}}( N, 2*N ) ) | ||||||||||||||||||
| <ndarray>[ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] | ||||||||||||||||||
| > var factors = {{alias:@stdlib/ndarray/slice}}( workspace, new {{alias:@stdlib/slice/ctor}}( 2*N, ( 2*N ) + 4 ) ) | ||||||||||||||||||
|
Comment on lines
+32
to
+34
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
| <ndarray>[ 8, 2, 2, 4 ] | ||||||||||||||||||
|
|
||||||||||||||||||
| See Also | ||||||||||||||||||
| -------- | ||||||||||||||||||
|
|
||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,68 @@ | ||||||||||||||||
| /* | ||||||||||||||||
| * @license Apache-2.0 | ||||||||||||||||
| * | ||||||||||||||||
| * Copyright (c) 2026 The Stdlib Authors. | ||||||||||||||||
| * | ||||||||||||||||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||||||||||||||||
| * you may not use this file except in compliance with the License. | ||||||||||||||||
| * You may obtain a copy of the License at | ||||||||||||||||
| * | ||||||||||||||||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||||||||||||||||
| * | ||||||||||||||||
| * Unless required by applicable law or agreed to in writing, software | ||||||||||||||||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||||||||||||||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||||||||||||
| * See the License for the specific language governing permissions and | ||||||||||||||||
| * limitations under the License. | ||||||||||||||||
| */ | ||||||||||||||||
|
|
||||||||||||||||
| // TypeScript Version: 4.1 | ||||||||||||||||
|
|
||||||||||||||||
| /// <reference types="@stdlib/types"/> | ||||||||||||||||
|
|
||||||||||||||||
| import { ndarray, float64ndarray } from '@stdlib/types/ndarray'; | ||||||||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||
|
|
||||||||||||||||
| /** | ||||||||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||
| * Initializes a workspace array for performing a real-valued Fourier transform on a one-dimensional ndarray. | ||||||||||||||||
| * | ||||||||||||||||
| * ## Notes | ||||||||||||||||
| * | ||||||||||||||||
| * - The function expects the following ndarrays: | ||||||||||||||||
| * | ||||||||||||||||
| * - a zero-dimensional ndarray containing the length of the sequence to transform. | ||||||||||||||||
| * - a one-dimensional input ndarray. | ||||||||||||||||
| * | ||||||||||||||||
| * @param arrays - array-like object containing ndarrays | ||||||||||||||||
| * @returns output ndarray | ||||||||||||||||
| * | ||||||||||||||||
| * @example | ||||||||||||||||
| * var Float64Vector = require( '@stdlib/ndarray/vector/float64' ); | ||||||||||||||||
| * var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); | ||||||||||||||||
| * var Slice = require( '@stdlib/slice/ctor' ); | ||||||||||||||||
| * var slice = require( '@stdlib/ndarray/slice' ); | ||||||||||||||||
| * | ||||||||||||||||
| * var N = 8; | ||||||||||||||||
| * var len = scalar2ndarray( N, { | ||||||||||||||||
| * 'dtype': 'int32' | ||||||||||||||||
| * }); | ||||||||||||||||
| * | ||||||||||||||||
| * var workspace = new Float64Vector( ( 2*N ) + 34 ); | ||||||||||||||||
| * | ||||||||||||||||
| * var out = rffti( [ len, workspace ] ); | ||||||||||||||||
| * // returns <ndarray> | ||||||||||||||||
| * | ||||||||||||||||
| * var bool = ( out === workspace ); | ||||||||||||||||
| * // returns true | ||||||||||||||||
| * | ||||||||||||||||
| * var twiddleFactors = slice( workspace, new Slice( N, 2*N ) ); | ||||||||||||||||
| * // returns <ndarray>[ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] | ||||||||||||||||
| * | ||||||||||||||||
| * var factors = slice( workspace, new Slice( 2*N, ( 2*N ) + 4 ) ); | ||||||||||||||||
| * // returns <ndarray>[ 8, 2, 2, 4 ] | ||||||||||||||||
| */ | ||||||||||||||||
| declare function rffti( arrays: [ ndarray, float64ndarray ] ): float64ndarray; | ||||||||||||||||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have used
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||
|
|
||||||||||||||||
|
|
||||||||||||||||
| // EXPORTS // | ||||||||||||||||
|
|
||||||||||||||||
| export = rffti; | ||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.