MATLAB: How to delete a row from a Financial Time Series

fints

Hi,
This seems like such a simple action, but I can't find an answer. How do I delete rows from a fints object?
With a matrix I just use: mat1(3:4,:)=[];
But, that doesn't work with fints. I suppose one could do this with the data table app, but I need a command line option.
Thanks in advance!

Best Answer

tsobjkt = tsobjkt([1 3:end]); % Just overwrite it with second obs removed