how to do it
Show older comments
I have radius in range 24.94 to 27.30. I want 264 intermediate points. How to do it using matlab
Accepted Answer
More Answers (1)
David Sanchez
on 21 Jan 2014
a fastest way than linspace:
ini = 24.94;
last = 27.3;
samples = 264;
x2 = ini:(last-ini)/(samples+1):last;
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!