Difference between x = 0:0.1:2*pi and linspace(0,2*pi,0.1)
25 views (last 30 days)
Show older comments
i was going through a matlab code and it had x = 0:0.1:2*pi written
i wanted to ask what is the difference between this and linspace and how it is used?
0 Comments
Accepted Answer
David Hill
on 13 Nov 2022
Linspace divides the interval into the exact number specified, while colon notation just keeps increasing the interval by the middle number not to exceed the last number.
x=0:.1:2*pi
y=linspace(0,2*pi,63)
See the difference.
More Answers (0)
See Also
Categories
Find more on Logical 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!