Plotting data based on index

74 views (last 30 days)
Saar Peles
Saar Peles on 29 Apr 2020
Answered: Star Strider on 29 Apr 2020
I'm trying to plot multiple data sets of arrays that have the same size (1 col 27 rows) on the same plot. The x axis should be the row or index of the datum and the y axis would be its value. How do I do this? I don't normally use plots so this may be a dumb question. Thanks in advance

Accepted Answer

Star Strider
Star Strider on 29 Apr 2020
I would do something like this:
y = (sin([1;2;3]*(0:26)*pi/13)).'; % Create Matrix
x = 1:size(y,1);
figure
plot(x, y)
grid

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!