Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 135 additions & 0 deletions lib/node_modules/@stdlib/fft/base/fftpack/ndarray/rffti/README.md
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'
};


Comment on lines +32 to +38

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// 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

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
var len = scalar2ndarray( N, options );
var len = scalar2ndarray( N, {
'dtype': 'int32'
});

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

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
> 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 ) )
> var s = new {{alias:@stdlib/slice/ctor}}( N, 2*N );
> var twiddleFactors = {{alias:@stdlib/ndarray/slice}}( workspace, 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}}( workspace, s )

<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';

@kgryte kgryte Jul 22, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
import { ndarray, float64ndarray } from '@stdlib/types/ndarray';
import { typedndarray, floatndarray, genericndarray } from '@stdlib/types/ndarray';


/**

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/**
/**
* 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 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;

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have used ndarray here (for N) instead of something like int32ndarray, since I didn't saw a similar use anywhere.

@kgryte kgryte Jul 22, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
declare function rffti( arrays: [ ndarray, float64ndarray ] ): float64ndarray;
declare function rffti<T extends InputArray = InputArray>( arrays: [ T, typedndarray<number> ] ): T;



// EXPORTS //

export = rffti;
Loading