Add title, x and y labels to scatter()

176 views (last 30 days)
Maaya
Maaya on 2 Jun 2019
Answered: Sambit Senapati on 14 Jun 2019
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 Comments
dpb
dpb on 2 Jun 2019
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
KALYAN ACHARJYA on 2 Jun 2019
Share the complete code? Or Restart the matlab and try again? Is there same issue?

Sign in to comment.

Answers (1)

Sambit Senapati
Sambit Senapati on 14 Jun 2019
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

Community Treasure Hunt

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

Start Hunting!