
Flipping a plot by 180 degrees
    64 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Subha Bose
 il 14 Gen 2019
  
    
    
    
    
    Commentato: Subha Bose
 il 21 Gen 2019
            Hi!
I want to flip/rotate the plot in the attachment, such that the right part of the plot is rotated to the left and vice versa. I have used flip command but doesn't seem to work. I have also used camroll(-90), view() and set(gca,'YDir','reverse') to achieve my desired result.

0 Commenti
Risposta accettata
  Bruno Luong
      
      
 il 14 Gen 2019
        
      Modificato: Bruno Luong
      
      
 il 14 Gen 2019
  
      
[x,y]=find(peaks>0.7)
close all
subplot(2,1,1);
plot(x,y,'or')
subplot(2,1,2);
plot(x,y,'or');
% This command will rotate the plot by 180 degree
set(gca,'xdir','reverse','ydir','reverse')
6 Commenti
  Bruno Luong
      
      
 il 16 Gen 2019
				
      Modificato: Bruno Luong
      
      
 il 16 Gen 2019
  
			If you want to rotate 180 by keeping the same axis range, you need to change the data.

[x,y]=find(peaks>0.7);
xf = min(x(:))+max(x(:))-x;
yf = min(y(:))+max(y(:))-y;
close all
subplot(2,1,1);
plot(x,y,'or')
subplot(2,1,2);
plot(xf,yf,'or');
Più risposte (1)
  Sayyed Ahmad Fani Yazdi
      
 il 14 Gen 2019
        if your x values are positive nambers you need only use
x=-x
and plot again. It could be flip your plot at y axis
Vedere anche
Categorie
				Scopri di più su Annotations 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!


