Add title, x and y labels to scatter()
123 ビュー (過去 30 日間)
古いコメントを表示
figure
scatter(data(I_1, 2), data(I_1, 3), rowsize(I_1), rowcolour(I_1,:), 'filled');
hold on
scatter(data(I_2, 2), data(I_1,3), [0,0,0]);
xlabel('Long');
ylabel('Lat');
title('Data 1');
This seems really simple but each time I try and add x/y labels and a title, my chart comes back with only Figure 1 at the top. However, the data is plotted correctly. Any tips?
2 件のコメント
dpb
2019 年 6 月 2 日
Can't follow what you think is wrong and can't run your code w/o data to go with it...a scatter plot here seems to have no issues I can see with labels/title...at least attach the figure to show what you got and explain what you think you should have gotten instead...
KALYAN ACHARJYA
2019 年 6 月 2 日
Share the complete code? Or Restart the matlab and try again? Is there same issue?
回答 (1 件)
Sambit Senapati
2019 年 6 月 14 日
From my understanding you would like to change the figure name from 'Figure 1' to something else. Please refer to following link: https://stackoverflow.com/questions/4684363/how-to-change-the-window-title-of-a-matlab-plotting-figure
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Title についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!