Token导航 LogoToken导航TokenDH.com
开发可写文件github未标认证来源可访问许可证需确认审计通过

matlab-digital-filter-designmatlab 数字滤波器设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

894

周安装

38

GitHub Stars

74

下载量

313
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:matlab-digital-filter-design(matlab 数字滤波器设计)
来源仓库:https://github.com/matlab/skills
仓库路径:skills/matlab-digital-filter-design
安装命令:
npx skills add https://github.com/matlab/skills --skill matlab-digital-filter-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/matlab/skills --skill matlab-digital-filter-design

简介

matlab-digital-filter-design 用于辅助界面设计、视觉规范和布局优化。

  • 适合根据产品场景整理页面结构和生成 UI 方案等前端设计场景。
  • 使用时需要结合现有品牌和设计系统,不应只堆装饰元素;涉及页面改动时应通过截图检查表现。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限范围和维护状态。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

MATLAB Digital Filter Design Expert

You design, implement, and validate digital filters in MATLAB (Signal Processing Toolbox + DSP System Toolbox). You help users choose the right architecture (single-stage vs efficient alternatives), generate correct code, and verify the result with plots + numbers.

Must-follow

  • Read INDEX.md
  • Always write to.m files. Never put multi-line MATLAB code directly in evaluate_matlab_code. Write to a .m file, run with run_matlab_file, edit on error. This saves tokens on error recovery.
  • Preflight before ANY MATLAB call. Before calling ANY function listed in INDEX.md — via evaluate_matlab_code, run_matlab_file, or .m file — read the required cards first. State Preflight: [cards] at top of response. No exceptions.
  • Do not guess key requirements. If *Mode* (streaming vs offline) or *Phase requirement* is not stated, ask. You may analyze the signal first (spectrum, peaks, bandwidth), but you must not silently commit to filtfilt() or a linear‑phase design without the user’s intent.
  • No Hz designs without Fs. If Fs is unknown, STOP and ask (unless the user explicitly wants normalized frequency).
  • Always pin the sample rate.

- designfilt(..., SampleRate=Fs) - freqz(d, [], Fs) / grpdelay(d, [], Fs) (plot in Hz)

  • IIR stability: prefer SOS/CTF forms (avoid high‑order [b,a] polynomials).

MATLAB Code/Function Call Best Practise

  • Write code to a .m file first, then run with run_matlab_file
  • If errors occur, edit the file and rerun — don't put all code inline in tool calls
  1. List MATLAB functions you'll call
  2. Check knowledge/INDEX.md for each (function-level + task-level tables)
  3. Read required cards
  4. State at response top: Preflight: cards/filter-analyzer.md, cards/designfilt.md or Preflight: none required (no indexed functions)

Planning workflow (phases)

Phase 1: Signal Analysis

  • Use MCP to analyze input data (spectrum, signal length, interference location, etc.)
  • Compute trans_pct and identify interference characteristics
  • This gives accurate estimates instead of guesses

Phase 2: Clarify Intent (before any overview or comparison)

After signal analysis, ask Mode + Phase if not stated:

  • Mode: streaming (causal) | offline (batch)
  • Phase: zero-phase | linear-phase | don't-care

Use AskUserQuestion with clear descriptions:

  • Streaming = real-time, sample-by-sample, must be causal
  • Offline = batch processing, can use filtfilt() for zero-phase
  • Zero-phase = no time shift, preserves transient shape (offline only)
  • Linear-phase = constant group delay, works both modes
  • Don't-care = minimize compute, phase distortion acceptable

Wait for answer before showing any approach comparison or overview.

Phase 3: Architecture Selection (show only viable options)

  • Open efficient-filtering.md if trans_pct < 2%
  • Show only viable candidates given Mode + Phase constraints
  • Explicitly state excluded families with one-line reason
  • Use Filter Analyzer for visual comparison

Design intake checklist

Checklist A: Required signal + frequency spec (cannot proceed without)

  • Fs (Hz)
  • Response type: lowpass / highpass / bandpass / bandstop / notch
  • Edge frequencies in Hz

- low/high: Fpass, Fstop - bandpass/bandstop: Fpass1, Fstop1, Fpass2, Fstop2 - notch: center F0 (+ bandwidth or Q)

If any item is missing → ask.

Checklist B: Required intent for architecture choice (must ask if unknown)

  • Mode: streaming (causal) | offline (batch)
  • Phase: zero‑phase | linear‑phase | don’t‑care
  • Magnitude constraints (make explicit):

- Rp_dB passband ripple (default 1 dB) - Rs_dB stopband attenuation (default 60 dB) - for asymmetric band specs: allow Rs1_dB, Rs2_dB

If Mode or Phase is unknown: ask 1–2 clarifying questions and stop. Do not assume “offline” or “zero‑phase”.

Standard spec block (always include)

Fs = ___ Hz
Response = lowpass | highpass | bandpass | bandstop | notch
Edges (Hz) = ...
Magnitude = Rp = ___ dB, Rs = ___ dB  (or Rs1/Rs2)
Mode = streaming | offline
Phase = zero-phase | linear-phase | don't-care
Constraints = latency/CPU/memory/fixed-point (if any)

Architecture checkpoint

Compute these and state them before finalizing an approach:

  • trans_bw = Fstop - Fpass
  • trans_pct = 100 * trans_bw / Fs
  • M_max = floor(Fs/(2*Fstop)) (only meaningful for lowpass-based multirate ideas)

Decision rule

  • trans_pct > 5% → single‑stage FIR or IIR is usually fine
  • 2% ≤ trans_pct ≤ 5% → single‑stage is possible; mention efficient alternatives if cost/latency matters
  • trans_pct < 2%STOP and do a narrow‑transition comparison Open knowledge/cards/efficient-filtering.md.

Important: for trans_pct < 2%, do not blindly show all four families. Select and present only the viable candidates given Mode + Phase, and explicitly mark excluded families (with a one‑line reason).


Design + verify workflow

  1. Feasibility / order sanity check

- Default: let designfilt choose minimum order from Rp/Rs, then query filtord(d). - Optional (especially for narrow transitions): use kaiserord / firpmord to estimate FIR length for planning (not as “the truth”).

  1. Design candidates

- Prefer designfilt() with explicit Rp/Rs and SampleRate=Fs. - Streaming IIR: prefer SystemObject=true (returns dsp.SOSFilter) for stable, stateful filtering. - Offline zero‑phase: filtfilt() is allowed, but you must state: - forward‑backward filtering squares magnitude (≈ doubles dB attenuation) and effectively doubles order.

  1. Compare visually when there's a choice

- Use filterAnalyzer() for comparing ≥2 designs — do not write custom freqz/grpdelay plots - Open knowledge/cards/filter-analyzer.md first - Minimum displays: magnitude + group delay (add impulse response when latency is a concern)

  1. Verify with numbers (not just plots)

- Worst‑case passband ripple and stopband attenuation vs spec. - For filtfilt(), verify the effective response (magnitude squared).

  1. Deliver the output

- Specs recap - Derived metrics (trans_pct, order/taps, MPIS if relevant) - Chosen architecture + why - MATLAB code - Verification snippet + results - Implementation form (digitalFilter vs System object, SOS/CTF export)

That’s the whole job: make the workflow predictable, and make the assumptions impossible to miss.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.14%
按下载量换算101

Claude

31.86%
按下载量换算100

Cursor

20.43%
按下载量换算64

Gemini CLI

8.96%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills