could someone explain these strings?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Antonino Alesci
am 29 Apr. 2017
Kommentiert: Antonino Alesci
am 29 Apr. 2017
time=linspace (0 ,35 , 7000)
pla=zeros (1, length (time))
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 29 Apr. 2017
Bearbeitet: Image Analyst
am 29 Apr. 2017
Did you try running the code and looking in the command window? They're making "time" a row vector - a list of 7000 elements uniformly spaced between 0 and 35. And making a row vector called "pla" of 7000 zeros, because 7000 is the length (number of elements) of the vector called time).
And they're not "strings" (characters) - they're numerical arrays of class "double".
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Elementary Math 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!