why I have error in the command linspace
Show older comments
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 Comment
"why I have error in the command linspace"
Because of this: https://en.wikipedia.org/wiki/Off-by-one_error#Fencepost_error
Answers (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 Comment
Walter Roberson
on 23 Apr 2022
or linspace(0,100,101)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!