フィルターのクリア

Creating the uniform distribution on [0,2pi) for 1000 times

19 ビュー (過去 30 日間)
yang-En Hsiao
yang-En Hsiao 2018 年 8 月 29 日
編集済み: Stephan 2021 年 5 月 21 日
I want to Create the uniform distribution on [0,2pi) for 1000 times,and here is my code
for n = 0:1:1000
theta(n)=0+(2*pi)*rand(1,1)
end
But matlab show me the warning: Subscript indices must either be real positive integers or logicals.I don't understand why does it show me this warning,can anyone tell me where am i wrong?

採用された回答

Stephan
Stephan 2018 年 8 月 29 日
編集済み: Stephan 2018 年 8 月 29 日
Hi,
dont start with n=0:
for n = 1:1:1000
theta(n)=0+(2*pi)*rand(1,1);
end
The better way (without loop) is following this and use:
theta = (2*pi)*rand(1,1000);
Best regards
Stephan
  2 件のコメント
Kinjal Macwan
Kinjal Macwan 2021 年 5 月 21 日
編集済み: Kinjal Macwan 2021 年 5 月 21 日
@StephanI want to create 500 samples of a signal 𝑑(𝑛) = 𝑠𝑖𝑛 (𝜔0𝑛 +𝜃)
with 𝜔0= 0.05𝜋 and 𝜃 is a random variable that is uniformly distributed between –π and π.
How to write the theta from -pi to pi in this problem?
Stephan
Stephan 2021 年 5 月 21 日
編集済み: Stephan 2021 年 5 月 21 日

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by