How can i plot this exact graph?

Antworten (1)

KL
KL am 20 Okt. 2017

0 Stimmen

What have you tried? Did you read the documentation?
Simple hint:
x = 0:stepsize:xmax;
y = sin(x);
y1 = ...;
y2 = ...;
plot(x,y)
hold on
plot(x,y1)
plot(x,y2)

2 Kommentare

Basit  Nadeem
Basit Nadeem am 20 Okt. 2017
I have tried but I'm not able to draw the dots on the graph line.
KL
KL am 20 Okt. 2017
Did you read the links I gave you??
Don't be lazy! This page has EXACTLY THE SAME PLOT you're asking for!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 20 Okt. 2017

Kommentiert:

KL
am 20 Okt. 2017

Community Treasure Hunt

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

Start Hunting!

Translated by