필터 지우기
필터 지우기

I performed dilation on signal but the peak values of signal are not increasing.

조회 수: 3 (최근 30일)
I performed dilation (mathematical morphology operation) on signal. But the peak values of signal is not increasing. Kindly give any suggestion in my code to perform proper dilation. The voltage and time values are imported from excel file.
%Selecting structuring element
sel=strel('square',11)
%voltage values of signal
signal1 = voltage
%Dilation on voltage signal
results1=imdilate(signal1,sel);
%Time values of signal
signal2 = time
%dilation on time siganl
results2=imdilate(signal2,sel);
plot(signal2,signal1,results2,results1)
xlabel('Time (seconds)')
ylabel('Voltage')
legend('orignalsignal','dilated')

답변 (0개)

카테고리

Help CenterFile Exchange에서 Pulse and Transition Metrics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by