My signal value is 1*2560 double and i tried this code to plot the signal s = load('test.mat'); val = (val - 1024)/200; signal = val(1,1:1000) t = (0:length(signal)-1)/360; plot(t,signal).But can anybody explain about this code.
조회 수: 1 (최근 30일)
이전 댓글 표시
My signal value is 1*2560 double and i tried this code to plot the signal
s = load('test.mat');
val = (val - 1024)/200;
signal = val(1,1:1000) ;
t = (0:length(signal)-1)/360;
plot(t,signal)
But can anybody explain about this code.
댓글 수: 4
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!