Importing time values into matlab in format hh:mm without converting to demical
3 ビュー (過去 30 日間)
古いコメントを表示
Hello,
How can you import time values in the format hh:mm (i.e. 09:31 21:13) in a text file into matlab?
When I load like them in using this command, they get converted to decimal.
time=load('time.txt');
I also would like to plot a histogram of them.
Many thanks
John
2 件のコメント
per isakson
2012 年 2 月 11 日
Does the file consist of *one* line with *many* character strings of the format "hh:ss", which are separated by *one* space?
回答 (1 件)
Walter Roberson
2012 年 2 月 11 日
Do not use load() for this.
I do not know if importdata will work.
You can use textscan()
4 件のコメント
Walter Roberson
2012 年 2 月 11 日
We would need to know the format of the lines in order to show you the textscan() format. The link Elige posted should give you some ideas.
参考
カテゴリ
Help Center および File Exchange で Data Import and Export についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!