Help understanding the erorr in a matlab code

I'm writing a function which recives a matrix of birth and death dates and return the number of days between them.
function daysVector=dateDiffMatrix(dateMat)
p=zeros(size(datMat,1),1);
for i=1:size(dateMat,1)
p(i)=dateDiff(dateMat(i,1:3),dateMat(i,4:6));
end
daysVector = p;
end
when I run it on the command window I received this message: Error in dateDiffMatrix (line 2) p=zeros(size(datMat,1),1);
Can you help me understand what is wrong with the code? thank you very much.

2 comentarios

Jan
Jan el 25 de Mzo. de 2013
Please use meaningful tags. All questions in a Matlab forum concern "matlab", and almost all concern "matlab code". Thanks.

Iniciar sesión para comentar.

Respuestas (1)

Ilham Hardy
Ilham Hardy el 25 de Mzo. de 2013

0 votos

Hi,
datMat is suppossed to be dateMat

2 comentarios

googo
googo el 25 de Mzo. de 2013
hoo :) thank's!
Image Analyst
Image Analyst el 25 de Mzo. de 2013
Please mark the answer that best answers your questions as "Accepted." Do so for all your other questions too.

Iniciar sesión para comentar.

Categorías

Más información sobre Programming en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 25 de Mzo. de 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by