??? Error using ==> plot Invalid first data argument

3 visualizaciones (últimos 30 días)
Mini Me
Mini Me el 13 de Mayo de 2014
Comentada: Mini Me el 13 de Mayo de 2014
filedir = dir('C:\Users\ValcourtA\Documents\WILMA\WILMA500Hz')
timerArray=[];
for cnt=1:5
battery=data(:,1)
timerArray=vertcat(timerArray,filedir(cnt).date)
plot(timerArray,Battery)
end
why do i get this error ??? Error using ==> plot Invalid first data argument

Respuestas (1)

Dishant Arora
Dishant Arora el 13 de Mayo de 2014
filedir(cnt).date is a character string. Use datenum
datenum(filedir(cnt).date)
  3 comentarios
Dishant Arora
Dishant Arora el 13 de Mayo de 2014
make use of dateformnum , as a parameter to datetick
datetick('x' , 0 , 'keepticks') % after you plot.
for more information see the documentation of datetick.
Mini Me
Mini Me el 13 de Mayo de 2014
not working..graph comes up as a vertical line because of how closed the dates are....

Iniciar sesión para comentar.

Categorías

Más información sobre Dates and Time en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by