how to do it

1 回表示 (過去 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 件のコメント
Rizwana
Rizwana 2014 年 1 月 21 日
thank you

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

その他の回答 (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 Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by