From: Peter Smith on
Hi all

i am looping through a number of matrices, they all contain a vector tmptime

I want to tell matlab to delete all rows of tmptime after row 800
The length of rows vary between matrices.

How can i tell matlab to just delete after 800 rows without specifying the final row.

Please could someone help i am very stuck

Many thanks
From: Matt J on

tmptime(801:end)=[];
From: Peter Smith on
many thanks