How to input multiple lines on a graph
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ashley Megow
am 22 Okt. 2020
Beantwortet: Monisha Nalluru
am 28 Okt. 2020
I imported my data from excel, and i want to compare to different y values on a line graph. How to i add the second y value
Akzeptierte Antwort
Monisha Nalluru
am 28 Okt. 2020
As a example
x = linspace(-pi,pi);
y1 = sin(x);
y2 = cos(x);
plot(x,y1); % first line
hold on
plot(x,y2); % second line
hold off
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!