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

1 vue (au cours des 30 derniers jours)
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

Réponse acceptée

Voss
Voss le 30 Nov 2021
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 commentaires
Voss
Voss le 2 Déc 2021
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!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Specifying Target for Graphics Output dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by