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

 采纳的回答

Mischa Kim
Mischa Kim 2014-1-21

0 个投票

Use
x = linspace(24.94, 27.30, 266)

更多回答(1 个)

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

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by