why I have error in the command linspace
Afficher commentaires plus anciens
I used the command x = linspace(0,100)
I expec to have value that range (1, 2, 3, etc....)
why do I get (0 1.01010101010101 , 2.02020202020202 , 3.03030303030303 , 4.04040404040404)
1 commentaire
"why I have error in the command linspace"
Because of this: https://en.wikipedia.org/wiki/Off-by-one_error#Fencepost_error
Réponses (1)
It defaults to 100 elements. So 0 to 100 is 101 integers so of course they will be slightly larger. If you want 1,2,3 you can do one of these two ways
x = 1 : 100
x = linspace(1, 100, 100) % Start at 1, not 0
1 commentaire
Walter Roberson
le 23 Avr 2022
or linspace(0,100,101)
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!