sawtooth wave modulation i want mean voltage will be change with respect to frequency
조회 수: 3 (최근 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
댓글 수: 0
답변 (1개)
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.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Sensors and Transducers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!