Subplot titles on each column.
古いコメントを表示
I was making a subplot(2,2,i) (i is any value from 1 to 4). However, I could not find a method to lable each set of grphs.
Specifically to lable each column as a title. Here I would want them above the left hand side and one above the righ hand side.

Any ideas for in built functions?
3 件のコメント
KALYAN ACHARJYA
2020 年 4 月 2 日
No, that gives a subtitle for all four of them, sort of like a main title.
subplot(2,2,1)
plot(t, V, t, V_t)
xlabel('Time in seconds')
ylabel('Velocity in m/s')
title('Lunch equation comparison of velociteis')
legend('Equation provieded', "Tsiolkovsky's equation", 'location', 'best')
subplot(2,2,3)
plot(t, H, t, H_t)
xlabel('Time in seconds')
ylabel('Distance in meters')
title('Lunch equation comparison of hight')
legend('Equation provieded', "Tsiolkovsky's equation", 'location', 'best')
suptitle('Left hand side') % this to be on the left side
subplot(2,2,2)
plot(t, V2, t, V_t)
xlabel('Time in seconds')
ylabel('Velocity in m/s')
title('Lunch equation comparison of velociteis')
legend('Equation provieded', "Tsiolkovsky's equation", 'location', 'best')
subplot(2,2,4)
plot(t, H2, t, H_t)
xlabel('Time in seconds')
ylabel('Distance in meters')
title('Lunch equation comparison of hight')
legend('Equation provieded', "Tsiolkovsky's equation", 'location', 'best')
suptitle('Right hand side') % this to be on the right side
Essentialy making one "main" title instead of two seperate "main" titles for each collumn.
KALYAN ACHARJYA
2020 年 4 月 2 日
Sorry, I missed the question. Are you looking for one main title over all same columns subplots?
Wojciech Kalinowski
2020 年 4 月 2 日
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!