필터 지우기
필터 지우기

Random Band-Limited White Noise Excitation

조회 수: 7 (최근 30일)
Yijing LU
Yijing LU 2022년 7월 4일
댓글: Yijing LU 2022년 7월 5일
Hi, i read a paper today. In matlab, how to generate a random excitation force consisted of a zero-mean signal with frequency content ranging from 0.2Hz to 1.2Hz. And after generate this random sequence ,how to scale the signal to RMS levels (i.e. RMS=165).

채택된 답변

Chunru
Chunru 2022년 7월 5일
편집: Chunru 2022년 7월 5일
% Band-limited noise can be generated by passing a white Gaussian noise
% through a band pass filter
fs = 5;
ns = round(700*fs); % 700 sec
x = bandpass(randn(ns, 1), [0.2 1.2], fs);
% normalise
x = x / rms(x) * 165;
subplot(211); plot((0:ns-1)/fs, x); xlim([600 660]);
subplot(212); pwelch(x, 1024, 512, 1024, fs);
  댓글 수: 1
Yijing LU
Yijing LU 2022년 7월 5일
Thanks a lot! Your answer is very useful to me.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by