how to Create random signal
古いコメントを表示
random signal how to
1 件のコメント
the cyclist
2015 年 7 月 13 日
There are many types of random signals. You need to be more specific. For example, I assume that the wind (red points) is autocorrelated in some way, and that the load (blue points) is correlated with the wind. Can you provide some details about that?
採用された回答
その他の回答 (3 件)
Azzi Abdelmalek
2015 年 7 月 13 日
Create a mat file like this one
t=0:0.1:10
y=rand(1,numel(t))
ty=[t;y]
save filename ty
2 件のコメント
ali al-khayyat
2019 年 8 月 24 日
Can you please generate triangle or carrier signal starts from 0 to 60 degree and stops and then starts from 120 to 180 and then repeat itself, either by coding or simulink, please?
the cyclist
2019 年 8 月 24 日
This question and answer are over 4 years old. I suggest you open a new question.
Muhammad Tayyab
2021 年 1 月 29 日
0 投票
𝑋(𝑡)=𝐴𝑐𝑜𝑠(2𝜋𝑓𝑐𝑡+Θ)+𝑊(𝑡)
i want to generate this signal. kind help required
2 件のコメント
Muhammad Tayyab
2021 年 1 月 29 日
𝑋(𝑡)=𝐴𝑐𝑜𝑠(2𝜋𝑓𝑐𝑡+Θ)+𝑊(𝑡)
Θ uniformly random [-pi, pi]
W(𝑡) is Guassian with mu=0 & sigma=No/2
Les Beckham
2021 年 1 月 30 日
You should really open a new question instead of inserting your question as an answer to a 6 year old question.
Also, read this:https:https://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
If you provide the code that you have written to try to solve your problem and show us what errors you get when your run it, you are likely to get someone to help you fix it. If you appear to be asking us to do all of the work for you, you will be less likely to get help.
KAVITHA
2024 年 6 月 12 日
0 投票
t=0:0.1:10
y=rand(1,numel(t))
ty=[t;y]
save filename ty
カテゴリ
ヘルプ センター および File Exchange で Spectral Measurements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!