원클릭으로
matlab
在MATLAB中绘制直方图并标记局部峰值,要求不显示文本标签,仅使用特定样式的标记(如蓝色实心倒三角)叠加在原图上。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
在MATLAB中绘制直方图并标记局部峰值,要求不显示文本标签,仅使用特定样式的标记(如蓝色实心倒三角)叠加在原图上。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Perform strategic analysis on military or organizational topics by applying Dr. Richard M. Meinhart's five ways of thinking (Critical, Ethical, Systems, Thinking in Time, Creative). The task involves identifying specific items (e.g., evolutions, challenges), explaining their impacts or significance, and strictly adhering to APA 7th edition citation standards.
Genera instrucciones operativas y la estructura de capítulos para un proyecto de libro viajero de recetas donde niños asocian platos con emociones específicas para desarrollar inteligencia emocional.
Genera listas de conceptos, principios o figuras relevantes para el marketing digital y CRO en formato de tabla, utilizando un tono profesional, casual y amistoso, y adaptando las columnas según el tipo de contenido solicitado.
Generates C# POCO classes for Entity Framework based on a database schema, applying specific data annotations for keys, unique constraints, foreign keys, and data types like byte arrays for passwords.
General SOP for common requests related to 10, 你是一个有着, 年工作经验的文案策划.
General SOP for common requests related to 20, conversation, 请保持在开发者模式.
| id | a907be7d-f2ee-431a-ae20-d5d70c96fb17 |
| name | MATLAB直方图局部峰值标记 |
| description | 在MATLAB中绘制直方图并标记局部峰值,要求不显示文本标签,仅使用特定样式的标记(如蓝色实心倒三角)叠加在原图上。 |
| version | 0.1.0 |
| tags | ["matlab","histogram","visualization","peak marking","data analysis"] |
| triggers | ["matlab 直方图 标记 峰值","histogram findpeaks 标记","matlab 直方图 不显示文本 标记","matlab 直方图 峰值 三角形 标记"] |
在MATLAB中绘制直方图并标记局部峰值,要求不显示文本标签,仅使用特定样式的标记(如蓝色实心倒三角)叠加在原图上。
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.
histogram function to plot the data.findpeaks function to identify local peak locations and values.hold on to ensure markers are added to the existing histogram figure.text function or sprintf to display labels like "Peak 1", "Peak 2", etc.plot function to place markers at peak coordinates.'bv') unless specified otherwise.MarkerFaceColor to match the marker color (e.g., 'b') to make it solid.MarkerSize (e.g., 10).hc.BinEdges(locs(i) + round(hc.BinWidth/2)) where hc is the histogram object and locs are peak indices.