??? Error using ==> plot Invalid first data argument
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponses (1)
Dishant Arora
le 13 Mai 2014
filedir(cnt).date is a character string. Use datenum
datenum(filedir(cnt).date)
3 commentaires
Dishant Arora
le 13 Mai 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.
Voir également
Catégories
En savoir plus sur Dates and Time dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!