mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
14 lines (13 loc) • 471 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.freqzDocs = void 0;
var freqzDocs = exports.freqzDocs = {
name: 'freqz',
category: 'Signal',
syntax: ['freqz(b, a)', 'freqz(b, a, w)'],
description: 'Calculates the frequency response of a filter given its numerator and denominator coefficients.',
examples: ['freqz([1, 2], [1, 2, 3])', 'freqz([1, 2], [1, 2, 3], [0, 1])', 'freqz([1, 2], [1, 2, 3], 512)'],
seealso: []
};
;