how to do it

3 次查看(过去 30 天)
Rizwana
Rizwana 2014-1-21
评论: Rizwana 2014-1-21
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
Use
x = linspace(24.94, 27.30, 266)

更多回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by