Akzeptierte Antwort

Torsten
Torsten am 17 Aug. 2016

1 Stimme

n1=5;
x=50:5:200;
y=2*pi*n1./x;
plot (x,y);
Best wishes
Torsten.

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 17 Aug. 2016
Bearbeitet: Azzi Abdelmalek am 17 Aug. 2016

1 Stimme

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
shaker mahmood am 17 Aug. 2016
Bearbeitet: shaker mahmood am 17 Aug. 2016
thank you so much ,its help me a lot

Melden Sie sich an, um zu kommentieren.

Kategorien

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by