How to rotate a vector
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Guendouz walid
 el 23 de En. de 2023
  
    
    
    
    
    Comentada: Guendouz walid
 el 23 de En. de 2023
            Hello ! I wonder if anyone has an elegant way to rotate a vector to create symmetry for Example: 
[110 120 130 140 150 160 180]
 to
[180 160 150 140 130 120 110]
Thanks in advance!
Walid
0 comentarios
Respuesta aceptada
  Askic V
      
 el 23 de En. de 2023
        
      Movida: Fangjun Jiang
      
      
 el 23 de En. de 2023
  
      If you want to reverse elements, then just use flip function.
v = 1:10
v_f = flip(v)
Más respuestas (0)
Ver también
Categorías
				Más información sobre Interactions, Camera Views, and Lighting en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
