Azzera filtri
Azzera filtri

give title on the left side of subplot

67 visualizzazioni (ultimi 30 giorni)
Elysi Cochin
Elysi Cochin il 30 Dic 2016
Commentato: Stephen il 13 Apr 2023
i need to give titles, is it possible to give title at the side of subplot as follows

Risposta accettata

KSSV
KSSV il 30 Dic 2016
You can make title as ylabel and achieve what you want..
x = linspace(0,10);
y1 = sin(x);
y2 = sin(5*x);
figure
subplot(2,1,1);
plot(x,y1)
ylabel('title1')
set(get(gca,'YLabel'),'Rotation',0)
subplot(2,1,2);
plot(x,y2)
ylabel('title2')
set(get(gca,'YLabel'),'Rotation',0)
  2 Commenti
Fryderyk Kögl
Fryderyk Kögl il 19 Set 2018
And what if I already used the ylabel function to create a label for the y axis?
Stephen
Stephen il 13 Apr 2023
No answer... of course not

Accedi per commentare.

Più risposte (1)

Tiezheng Song
Tiezheng Song il 29 Gen 2019
I have found a great answer here. Hope this would be helpful!

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by