フィルターのクリア

Generate a random signal with varying frequencies and constant rms

34 ビュー (過去 30 日間)
Daniel Du Toit
Daniel Du Toit 2023 年 7 月 14 日
回答済み: Garv Agarwal 2023 年 7 月 20 日
Hi
I am busy doing a project regarding the ISO 2631-1 filters that you apply to accelerometer data to evaluate human comfort. I am done with the filter design and is testing it at the moment.
I want to generate a random signal, x (time) and y (acceleration), where the signal has an RMS of 1, but the frequency of the signal varies. So I am currently extracting the dominant frequencies from my FFT data, so I want multiple frequencies to extract from the FFT. The frequencies of the signal should range between 0.1 Hz and 80 Hz.
Can anayone help please

回答 (1 件)

Garv Agarwal
Garv Agarwal 2023 年 7 月 20 日
Hi Daniel,
From my understanding, you want to generate a random signal with varying frequncy but constant rms value.
For generation the random frequencies, you can use the rand function-
r = minVal + (maxVal-minVal)*rand(sampleSize)
Then you can use these frequencies to create a sine wave.
The signal generated will then have to be normalized to have rms value of 1. You can do this by dividing the signal by its own rms value -
signal = signal/rms(signal)
You can read more about these functions, from the following documentations -

カテゴリ

Help Center および File ExchangeWaveform Generation についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by