How to create a plot with highlight (holes) based on Y value and colored density map based on X value

2 次查看(过去 30 天)
Hi Team,
can you please teach me how to plot the following
I start with 2 sin function addition.
>> t = [0:0.0001:0.4*pi];
y=cos(100*t) + cos(110*t);
plot (y)
Then can you please help me with
  1. highlight the data points with bubble whose Y value is less than 0.5 but great than -0.5 (as in the pic below)
  2. include a density heat map along the X axis with the relative density of the highlighted data points. (red means the highlighted data is very concentrated and blue means the highlighted data is very scarce)
The plot attached is more or less capture the requirement 1.
Thank you

采纳的回答

Voss
Voss 2021-11-30
To do #1, add the following lines of code after your plot(y) line:
hold on
idx = y>-0.5 & y<0.5;
plot(t(idx),y(idx),'o');
  6 个评论
Voss
Voss 2021-12-2
Great, glad it's working! Do you mind marking my answer as Accepted so that the question doesn't show up when other users browse unanswered questions (and also so I get credit for an accepted answer, of course)? Thanks!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by