Changing XDir permanent to reverse
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi again,
I got a new problem and missing a solution. I did a plotting in an axes after setting it XDir to reverse.
set(gca, 'XDir', 'reverse');
plot(vecA, vecB);
This is working well. Than I used
hold on;
and plotted something else
plot(vecC, vecD);
The result is that the axis changed back. :(
0 Kommentare
Antworten (2)
Sean de Wolski
am 24 Sep. 2013
plot is a high-level functhat changes a bunch of properties automatically. If you don't want to change the other properties, call line directly.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!