필터 지우기
필터 지우기

How to generate noise signal with desired max and min signal?

조회 수: 41 (최근 30일)
Sabella Huang
Sabella Huang 2022년 7월 5일
댓글: Sabella Huang 2022년 7월 7일
Hello Guys,
I want to ask about, how to generate noise signal with a desired max and min amplitude?. For example, I want to generate noise signal with max 4 and min 2 just like this figure.
Thank you

채택된 답변

Karim
Karim 2022년 7월 5일
if you just want a random signal you can try the following:
MinVal = 2 ;
MaxVal = 4;
numPoints = 1000;
Data = MinVal + rand(numPoints,1) .* (MaxVal - MinVal);
figure
plot(Data)
grid on
ylim([0 5])

추가 답변 (1개)

Raghav
Raghav 2022년 7월 5일
You can use tha rand() function to get a random noise signal in range of (a,b) by writing the expression: a+(b-a)*rand(size(x)).
x = linspace(0,1000,1000);
plot(2+2*rand(size(x)))
To undesrtand more about the rand() function, read the following documentation:

카테고리

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