shared-snippets/matlab/unitutils/wavecut.m

10 lines
167 B
Mathematica
Raw Normal View History

2024-08-29 13:01:31 +02:00
%
% -----------------
% Copyright © 2022 ACK Cyfronet AGH, Poland.
% -----------------
%
2024-08-28 17:22:21 +02:00
function [wc]=wavecut(wf,startp,endp)
wc=wf(round(startp):round(endp));
end