Add title, x and y labels to scatter()
122 次查看(过去 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!