sawtooth wave modulation i want mean voltage will be change with respect to frequency

조회 수: 1 (최근 30일)
t=0:1e-5:0.1;
f=10
v=sawtooth(2*pi*f*t);
v=0.3*(v+1);
k=mean(v)
my output is coming like k=0.299
i want to change mean voltage with respect to frequency

답변 (1개)

Pavan Guntha
Pavan Guntha 2021년 3월 24일
"i want to change mean voltage with respect to frequency" - Could you clearly elaborate on what should be the dependance of frequency in mean voltage calculation.
As per the above code, the mean value k changes if the frequency f is changed. Other workaround might be to incorporate the frequency parameter in calculating v as illustrated below:
v = func(f)*0.3*(v+1)
where func(f) represents the dependance of frequency in calculating the voltage.
If this isn't the issue you were facing, could you mention the exact problem you want to resolve.

카테고리

Help CenterFile Exchange에서 Sensors and Transducers에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by