Clear Filters
Clear Filters

how to do it

3 views (last 30 days)
Rizwana
Rizwana on 21 Jan 2014
Commented: Rizwana on 21 Jan 2014
I have radius in range 24.94 to 27.30. I want 264 intermediate points. How to do it using matlab

Accepted Answer

Mischa Kim
Mischa Kim on 21 Jan 2014
Use
x = linspace(24.94, 27.30, 266)

More Answers (1)

David Sanchez
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 Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!