Link the y-axis in first subplot with color in the second subplot when zoom in
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, here two subplots with first one is height vs. time, the second subplot is scatterplot x vs.y with the time be color coded. See the plot code below
The linkage between first and second subplot is time.
What I really want to achieve is when I zoom in the first plot in a certain time, the second plot will show the points in X-Y in the same time range.
Anyone has some idea? Thanks!
x=0.1:0.1:1;
y=0.2:0.2:2;
z=10:-1:1;
t=1:10;
figure;
subplot(2,1,1);
plot(t,z);
subplot(2,1,2);
s=10;
scatter(x,y,s,t);
colormap jet;
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!