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

2 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Voss
Voss il 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 Commenti
Voss
Voss il 2 Dic 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!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Specifying Target for Graphics Output in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by