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 件のコメント

Rizwana
Rizwana 2014 年 1 月 21 日
thank you

サインインしてコメントする。

その他の回答 (1 件)

David Sanchez
David Sanchez 2014 年 1 月 21 日

0 投票

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

カテゴリ

タグ

質問済み:

2014 年 1 月 21 日

コメント済み:

2014 年 1 月 21 日

Community Treasure Hunt

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

Start Hunting!

Translated by