what does 1 indicate in f=100:1:400?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
my program is f=100:1:400 X=2*3.14*f Z=r+j*X plot(f,Z)
3 Kommentare
Akzeptierte Antwort
the cyclist
am 7 Okt. 2012
Bearbeitet: the cyclist
am 7 Okt. 2012
The statement
>> f = 100:1:400
tells MATLAB to create a vector of values from 100 to 400, with a spacing of 1. Similarly,
>> f = 100:100:400
would result in
>> f = [100 200 300 400]
You can read a bit more by typing
>> help :
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!