How to zoom in synchronous together with 1d and 2d data on different subplots
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    HANS
 il 26 Gen 2018
  
    
    
    
    
    Risposto: Walter Roberson
      
      
 il 26 Gen 2018
            Hi to everybody,
Better to explain w/ some code I think.
figure;
subplot(2,1,1);
plot(x_vector,1d_data);
subplot(2,1,2);
imagesc(x_vector,y_vector,2d_data);
%%%%
From this point if the plot is zoomed then according to the zoomed value of "x_vector" the imagesc will be zoomed.
I guess, linkaxes will be used.
Could anybody help me ?
Thx,
WR
0 Commenti
Risposta accettata
  Walter Roberson
      
      
 il 26 Gen 2018
        figure;
ax1 = subplot(2,1,1);
plot(x_vector,1d_data);
ax2 = subplot(2,1,2);
imagesc(x_vector,y_vector,2d_data);
linkaxes([ax1, ax2], 'xy')
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Data Exploration in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

