From: Andrew S. <str...@as...> - 2005-02-07 06:29:41
|
Andrew Straw wrote: > Simple question: how can I plot something such that the y axis is > "inverted"? (Increasing downwards?) Simple answer: ymin,ymax= get(gca(),'ylim') set(gca(),'ylim',[ymax,ymin]) Now, on to determine how to plot an image with origin='upper' with the extent going the other way... Cheers! Andrew |