Clear Filters
Clear Filters

data labels in plot- in code

3 views (last 30 days)
Hello,
So I am writing code that produces a plot with two different data vectors, and giving instructions about axes labels etc, like so
plot(times, Node1); %going to be a blue line
hold on;
plot(times, Node2); %going to be a red line
hold on;
plot(times,diff_N1_N2)
ylabel('phases')
xlabel('time')
title('Time evolution of oscillator phases and their phase difference');
hold off;
My question is, how do I add data labels to the different data types in the code? I can do that once the figure is produced, but the matlab documentation does not seem to have any relevant instructions for how to do that in the code.
Thank you!
  2 Comments
KALYAN ACHARJYA
KALYAN ACHARJYA on 2 Nov 2019
Are you asking different axes labels in the same figure?
Eleanna Kritikaki
Eleanna Kritikaki on 2 Nov 2019
Hello,
Thanks; I should have been clearer; I am talking about data labels that identify the different data types plotted and represented by a line each; example: on the picture attached, upper right corner.

Sign in to comment.

Accepted Answer

the cyclist
the cyclist on 2 Nov 2019
Use the legend command.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!