shared-snippets/matlab/unitutils/wavecut.m

10 lines
167 B
Matlab

%
% -----------------
% Copyright © 2022 ACK Cyfronet AGH, Poland.
% -----------------
%
function [wc]=wavecut(wf,startp,endp)
wc=wf(round(startp):round(endp));
end