Simples,
k++
is not valid matlab syntax, sadly according to some, but fact. You'll have to do an excplicit incrementations:
k = k+1;
p = p+1;
inside your else clause.
HTH
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!