why its not work
Ältere Kommentare anzeigen
i used
n1=5;
for x=50:5:200;
y=2*pi*n1/x;
plot (x,y);
its show an empty plot
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 17 Aug. 2016
Bearbeitet: Azzi Abdelmalek
am 17 Aug. 2016
If you want to do it with a for loop
n1=5;
for x=50:5:200;
y=2*pi*n1./x;
scatter(x,y);
hold on
end
1 Kommentar
shaker mahmood
am 17 Aug. 2016
Bearbeitet: shaker mahmood
am 17 Aug. 2016
Kategorien
Mehr zu Log Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!