how i can find 1 kHz sinusoidal disturbance of V rms =0.1V?

조회 수: 3 (최근 30일)
ashwan nadzlan
ashwan nadzlan 2021년 2월 11일
답변: Shubham Khatri 2021년 2월 21일
N[n] = 1 kHz sinusoidal disturbance of V rms =0.1V

답변 (1개)

Shubham Khatri
Shubham Khatri 2021년 2월 21일
Hello,
Assuming you want to create a disturbance of 1 kHz sinusoidal disturbance, please refer to the code below.
t=0 : 0.0001 : 0.01;
f=1000;
Vr=0.1;
Vm=sqrt(2) * Vr;
V= Vm * cos(2*pi*f*t);
plot(t,V)
Assuming if an existing disturbance is there in the signal of given Vrms, you can use notch filtering. Please find the documentation link for notch filtering here
Hope it helps

카테고리

Help CenterFile Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by