I have radius in range 24.94 to 27.30. I want 264 intermediate points. How to do it using matlab

 Akzeptierte Antwort

Mischa Kim
Mischa Kim am 21 Jan. 2014

0 Stimmen

Use
x = linspace(24.94, 27.30, 266)

Weitere Antworten (1)

David Sanchez
David Sanchez am 21 Jan. 2014

0 Stimmen

a fastest way than linspace:
ini = 24.94;
last = 27.3;
samples = 264;
x2 = ini:(last-ini)/(samples+1):last;

Tags

Gefragt:

am 21 Jan. 2014

Kommentiert:

am 21 Jan. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by