How to plot like this????????

6 views (last 30 days)
Sadiq Akbar
Sadiq Akbar on 1 Jul 2022
Commented: Sadiq Akbar on 4 Jul 2022
I want to draw my plot like the one shown in the attachment. I tried but in vain.

Accepted Answer

the cyclist
the cyclist on 1 Jul 2022
There are examples in the documentation for the plot command that are very similar to this, for example:
x = 0:pi/10:2*pi;
y1 = sin(x);
y2 = sin(x-0.25);
y3 = sin(x-0.5);
figure
plot(x,y1,'g',x,y2,'b--o',x,y3,'c*')
You'll also need the legend command.
  7 Comments
the cyclist
the cyclist on 4 Jul 2022
My example is not intended to create your exact figure.
My example is intended to teach you how the MATLAB syntax works. It should be very easy for you to read the documentation I posted, and edit my example to do what you need. For example, to create a triangle marker instead of a circle marker, you can use '-^' instead of '-o'.
Sadiq Akbar
Sadiq Akbar on 4 Jul 2022
Ok dear the cycllist thank you very much for your help.

Sign in to comment.

More Answers (0)

Categories

Find more on Graph and Network Algorithms 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!