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!