UNPKG

@stdlib/simulate-iter-lanczos-pulse

Version:

Create an iterator which generates a Lanczos pulse waveform.

170 lines (154 loc) 4.07 kB
/** * @license Apache-2.0 * * Copyright (c) 2019 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 setReadOnly = require( '@stdlib/utils-define-nonenumerable-read-only-property' ); var iteratorSymbol = require( '@stdlib/symbol-iterator' ); var format = require( '@stdlib/string-format' ); var sinc = require( '@stdlib/math-base-special-sinc' ); var validate = require( './validate.js' ); // MAIN // /** * Returns an iterator which generates a Lanczos pulse waveform. * * @param {Options} [options] - function options * @param {PositiveInteger} [options.period=100] - number of iterations before a waveform repeats * @param {PositiveInteger} [options.duration=options.period] - pulse duration * @param {PositiveNumber} [options.amplitude=1.0] - amplitude * @param {integer} [options.offset=0] - phase offset (in units of iterations; zero-based) * @param {NonNegativeInteger} [options.iter=1e308] - number of iterations * @throws {TypeError} options argument must be an object * @throws {TypeError} must provide valid options * @throws {RangeError} pulse duration must be less than the period * @throws {RangeError} pulse duration must be greater than `2` * @returns {Iterator} iterator * * @example * var opts = { * 'period': 10 * }; * * var iter = iterLanczosPulse( opts ); * * var v = iter.next().value; * // returns <number> * * v = iter.next().value; * // returns <number> * * v = iter.next().value; * // returns <number> * * // ... */ function iterLanczosPulse( options ) { var opts; var iter; var FLG; var err; var t; var s; var i; opts = { 'duration': -1, 'period': 100, 'amplitude': 1.0, 'offset': 0, 'iter': 1e308 }; if ( arguments.length ) { err = validate( opts, options ); if ( err ) { throw err; } } if ( opts.duration === -1 ) { opts.duration = opts.period; } if ( opts.duration > opts.period ) { throw new RangeError( format( 'invalid option. `%s` option must be less than or equal to the period. Option: `%u`.', 'duration', opts.duration ) ); } if ( opts.duration <= 2 ) { throw new RangeError( format( 'invalid option. `%s` option must be greater than 2. Option: `%s`.', 'duration', opts.duration ) ); } t = ( opts.period-opts.offset ) % opts.period; if ( t < 0 ) { t += opts.period; } s = 2.0 / (opts.duration-1); t -= 1; i = 0; // Create an iterator protocol-compliant object: iter = {}; setReadOnly( iter, 'next', next ); setReadOnly( iter, 'return', end ); // If an environment supports `Symbol.iterator`, make the iterator iterable: if ( iteratorSymbol ) { setReadOnly( iter, iteratorSymbol, factory ); } return iter; /** * Returns an iterator protocol-compliant object containing the next iterated value. * * @private * @returns {Object} iterator protocol-compliant object */ function next() { i += 1; if ( FLG || i > opts.iter ) { return { 'done': true }; } t = (t+1) % opts.period; return { 'value': ( t < opts.duration ) ? opts.amplitude*sinc((s*t)-1.0) : 0.0, 'done': false }; } /** * Finishes an iterator. * * @private * @param {*} [value] - value to return * @returns {Object} iterator protocol-compliant object */ function end( value ) { FLG = true; if ( arguments.length ) { return { 'value': value, 'done': true }; } return { 'done': true }; } /** * Returns a new iterator. * * @private * @returns {Iterator} iterator */ function factory() { return iterLanczosPulse( opts ); } } // EXPORTS // module.exports = iterLanczosPulse;