MATLAB: How to save a portion from a signal saved as double

signal processing

Hi, I have a signal form some physical motor of width 62666×1. I want to cut a portion of signal from 0 to 60000 and save it as another signal. how I can do it in .m file. Thanks

Best Answer

newSignal=origSignal(1:60000);
Related Question