How to flip the data upside down without flipping the axes?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kofial
el 18 de En. de 2021
Comentada: dpb
el 18 de En. de 2021
x = [1 2 3];
y= [6 13 11];
plot(x,y)
set(gca,'Ydir','reverse')
I tried this code but it flips the y axis. I want to keep both axis the same.
4 comentarios
dpb
el 18 de En. de 2021
Remove the -y from the second; that was a figment of the copy/paste...it's the same idea that Star-S shows.
Respuesta aceptada
Star Strider
el 18 de En. de 2021
I am not certain what result you want.
Try this:
x = [1 2 3];
y = [6 13 11];
figure
plot(x,max(y)-y+min(y))
.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Graphics Object Programming 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!