feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
export var 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: []
};

View File

@@ -0,0 +1,8 @@
export var zpk2tfDocs = {
name: 'zpk2tf',
category: 'Signal',
syntax: ['zpk2tf(z, p, k)'],
description: 'Compute the transfer function of a zero-pole-gain model.',
examples: ['zpk2tf([1, 2], [-1, -2], 1)', 'zpk2tf([1, 2], [-1, -2])', 'zpk2tf([1 - 3i, 2 + 2i], [-1, -2])'],
seealso: []
};