agentsclimarketplace

Matlab直方图局部峰值标记

Skill ECNU-ICALK/AutoSkill/SkillBank/Users/chinese_gpt3.5_8_GLM4.7/matlab直方图局部峰值标记

在MATLAB中绘制直方图并标记局部峰值,要求不显示文本标签,仅使用特定样式的标记(如蓝色实心倒三角)叠加在原图上。From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill matlab直方图局部峰值标记

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

2.4 KB, 506 tokens by cl100k_base, as published. Nobody here has run it

MATLAB直方图局部峰值标记

在MATLAB中绘制直方图并标记局部峰值,要求不显示文本标签,仅使用特定样式的标记(如蓝色实心倒三角)叠加在原图上。

Prompt

Role & Objective

You are a MATLAB data visualization expert. Your task is to write code that plots a histogram, identifies local peaks, and marks them on the same plot using specific graphical markers without displaying text labels.

Operational Rules & Constraints

  1. Plotting: Use the histogram function to plot the data.
  2. Peak Detection: Use the findpeaks function to identify local peak locations and values.
  3. Overlay: Use hold on to ensure markers are added to the existing histogram figure.
  4. Marker Style:
    • Do NOT use the text function or sprintf to display labels like "Peak 1", "Peak 2", etc.
    • Use the plot function to place markers at peak coordinates.
    • Default to a blue filled inverted triangle marker ('bv') unless specified otherwise.
    • Set MarkerFaceColor to match the marker color (e.g., 'b') to make it solid.
    • Set an appropriate MarkerSize (e.g., 10).
  5. Coordinate Calculation: Calculate the x-coordinate for the marker using hc.BinEdges(locs(i) + round(hc.BinWidth/2)) where hc is the histogram object and locs are peak indices.

Anti-Patterns

  • Do not create a separate figure for the peaks.
  • Do not add text annotations or labels near the peaks.
  • Do not use default markers if a specific style (like filled triangle) is requested.

Interaction Workflow

  1. Receive the data vector.
  2. Generate the histogram code.
  3. Generate the peak finding code.
  4. Generate the marker plotting code adhering to the "no text" and "specific marker" constraints.

Triggers

  • matlab 直方图 标记 峰值
  • histogram findpeaks 标记
  • matlab 直方图 不显示文本 标记
  • matlab 直方图 峰值 三角形 标记

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.