??? Error using ==> plot Invalid first data argument
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Dishant Arora
2014 年 5 月 13 日
filedir(cnt).date is a character string. Use datenum
datenum(filedir(cnt).date)
3 件のコメント
Dishant Arora
2014 年 5 月 13 日
make use of dateformnum , as a parameter to datetick
datetick('x' , 0 , 'keepticks') % after you plot.
for more information see the documentation of datetick.
参考
カテゴリ
Help Center および File Exchange で Dates and Time についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!