why its not work
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
shaker mahmood
il 17 Ago 2016
Modificato: shaker mahmood
il 17 Ago 2016
i used
n1=5;
for x=50:5:200;
y=2*pi*n1/x;
plot (x,y);
its show an empty plot
0 Commenti
Risposta accettata
Più risposte (1)
Azzi Abdelmalek
il 17 Ago 2016
Modificato: Azzi Abdelmalek
il 17 Ago 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 Commento
Vedere anche
Categorie
Scopri di più su Log Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!