-
-
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
Open
gunjjoshi
wants to merge
19
commits into
stdlib-js:develop
Choose a base branch
from
gunjjoshi:ndarray/rffti
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
030a34a
feat: add initial implementation
gunjjoshi 60f690c
refactor: use ndarray/slice
gunjjoshi a56e1f1
feat: add fft/base/fftpack/ndarray/rffti
gunjjoshi bfb49ed
Merge branch 'develop' into ndarray/rffti
gunjjoshi 77183d9
bench: use int32
gunjjoshi fee5484
Merge branch 'develop' into ndarray/rffti
gunjjoshi 974b5b7
refactor: keep workspace first, len next
gunjjoshi 2e59747
test: add checks to ensure scratch region and spaces between strides …
gunjjoshi cc5821c
Apply suggestions from code review
gunjjoshi d39a78c
docs: update README example
gunjjoshi bef7f4b
Merge branch 'develop' into ndarray/rffti
gunjjoshi dac4cdd
docs: use correct parameter order in README
gunjjoshi 8939465
docs: rename workspace to w
gunjjoshi 4cfbdc1
Merge branch 'develop' into ndarray/rffti
gunjjoshi 8a88eaf
Merge branch 'develop' into ndarray/rffti
gunjjoshi a737efb
bench: use generic dtype in benchmark
gunjjoshi 59bdb23
docs: fix spacing
gunjjoshi 849bbc4
test: use integers
gunjjoshi 17c95ca
test: use Float64Array
gunjjoshi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
133 changes: 133 additions & 0 deletions
133
lib/node_modules/@stdlib/fft/base/fftpack/ndarray/rffti/README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,133 @@ | ||
| <!-- | ||
|
|
||
| @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 w = new Float64Vector( ( 2*N ) + 34 ); | ||
|
|
||
| var out = rffti( [ w, len ] ); | ||
| // returns <ndarray> | ||
|
|
||
| var bool = ( out === w ); | ||
| // returns true | ||
|
|
||
| var twiddleFactors = slice( w, new Slice( N, 2*N ) ); | ||
| // returns <ndarray>[ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] | ||
|
|
||
| var factors = slice( w, 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 one-dimensional input ndarray. | ||
| - a zero-dimensional ndarray containing the length of the sequence to transform. | ||
|
|
||
| </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 N = 8; | ||
|
|
||
| var w = new Float64Vector( ( 2*N ) + 34 ); | ||
| console.log( ndarray2array( w ) ); | ||
|
|
||
| var len = scalar2ndarray( N, { | ||
| 'dtype': 'int32' | ||
| }); | ||
|
|
||
| var out = rffti( [ w, len ] ); | ||
| 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 --> |
115 changes: 115 additions & 0 deletions
115
lib/node_modules/@stdlib/fft/base/fftpack/ndarray/rffti/benchmark/benchmark.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,115 @@ | ||
| /** | ||
| * @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 zeros = require( '@stdlib/ndarray/zeros' ); | ||
| 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': 'generic' | ||
| }; | ||
|
|
||
|
|
||
| // FUNCTIONS // | ||
|
|
||
| /** | ||
| * Creates a benchmark function. | ||
| * | ||
| * @private | ||
| * @param {PositiveInteger} N - sequence length | ||
| * @returns {Function} benchmark function | ||
| */ | ||
| function createBenchmark( N ) { | ||
| var len; | ||
| var w; | ||
|
|
||
| len = scalar2ndarray( N, options ); | ||
| w = zeros( [ ( 2*N ) + 34 ], options ); | ||
|
|
||
| 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( [ w, len ] ); | ||
| 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(); |
41 changes: 41 additions & 0 deletions
41
lib/node_modules/@stdlib/fft/base/fftpack/ndarray/rffti/docs/repl.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
|
|
||
| {{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 one-dimensional input ndarray. | ||
| - a zero-dimensional ndarray containing the length of the sequence to | ||
| transform. | ||
|
|
||
| Returns | ||
| ------- | ||
| out: ndarray | ||
| Output ndarray. | ||
|
|
||
| Examples | ||
| -------- | ||
| > var N = 8; | ||
| > var w = new {{alias:@stdlib/ndarray/vector/float64}}( ( 2*N ) + 34 ); | ||
| > var len = {{alias:@stdlib/ndarray/from-scalar}}( N, { 'dtype': 'int32' }); | ||
| > var out = {{alias}}( [ w, len ] ) | ||
| <ndarray> | ||
| > var bool = ( out === w ) | ||
| true | ||
| > var s = new {{alias:@stdlib/slice/ctor}}( N, 2*N ); | ||
| > var twiddleFactors = {{alias:@stdlib/ndarray/slice}}( w, s ) | ||
| <ndarray>[ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] | ||
| > s = new {{alias:@stdlib/slice/ctor}}( 2*N, ( 2*N ) + 4 ); | ||
| > var factors = {{alias:@stdlib/ndarray/slice}}( w, s ) | ||
| <ndarray>[ 8, 2, 2, 4 ] | ||
|
|
||
| See Also | ||
| -------- | ||
|
|
73 changes: 73 additions & 0 deletions
73
lib/node_modules/@stdlib/fft/base/fftpack/ndarray/rffti/docs/types/index.d.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| /* | ||
| * @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 { typedndarray, floatndarray, genericndarray } from '@stdlib/types/ndarray'; | ||
|
|
||
| /** | ||
| * Input array. | ||
| */ | ||
| type InputArray = floatndarray | genericndarray<number>; | ||
|
|
||
| /** | ||
| * Initializes a workspace array for performing a real-valued Fourier transform on a one-dimensional ndarray. | ||
| * | ||
| * ## Notes | ||
| * | ||
| * - The function expects the following ndarrays: | ||
| * | ||
| * - a one-dimensional input ndarray. | ||
| * - a zero-dimensional ndarray containing the length of the sequence to transform. | ||
| * | ||
| * @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 w = new Float64Vector( ( 2*N ) + 34 ); | ||
| * | ||
| * var out = rffti( [ w, len ] ); | ||
| * // returns <ndarray> | ||
| * | ||
| * var bool = ( out === w ); | ||
| * // returns true | ||
| * | ||
| * var twiddleFactors = slice( w, new Slice( N, 2*N ) ); | ||
| * // returns <ndarray>[ ~0.707, ~0.707, 0, 0, 0, 0, 0, 0 ] | ||
| * | ||
| * var factors = slice( w, new Slice( 2*N, ( 2*N ) + 4 ) ); | ||
| * // returns <ndarray>[ 8, 2, 2, 4 ] | ||
| */ | ||
| declare function rffti<T extends InputArray = InputArray>( arrays: [ T, typedndarray<number> ] ): T; | ||
|
|
||
|
|
||
| // EXPORTS // | ||
|
|
||
| export = rffti; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.