how to do it
1 次查看(过去 30 天)
显示 更早的评论
I have radius in range 24.94 to 27.30. I want 264 intermediate points. How to do it using matlab
0 个评论
采纳的回答
更多回答(1 个)
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;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!