How to align X and Y axis to middle of plot?
70 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
DESIREDDY SHASHIDHAR REDDY
am 28 Apr. 2023
Bearbeitet: DESIREDDY SHASHIDHAR REDDY
am 28 Apr. 2023
t = 0:5:360;
x = 10+cosd(t);
y = 10+sind(t);
plot(x,y);
How do I align the x and y axis to the centre of the plot similar to this attached image.
0 Kommentare
Antworten (1)
Cameron
am 28 Apr. 2023
t = 0:5:360;
x = cosd(t);
y = sind(t);
p = plot(x,y);
p.Parent.XAxisLocation = "origin";
p.Parent.YAxisLocation ="origin";
1 Kommentar
Siehe auch
Kategorien
Mehr zu Filter Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!