How to import large dataset
3 ビュー (過去 30 日間)
古いコメントを表示
I have around 30000 excel files that contain information of different signals My main goal is to classify those signals into 2 classes. I have two problems, How to load all the files on the matlab and acquire this data knowing that each file characterizea window of my signal by a dozen values, every file looks like that: (see the attached file)
And then I want to collect the data from each file and do a supervised learning And classify the 30,000 files into two classes (one thing A happened to the signal or two thing did not happen) How can I do that ? Need help ??
0 件のコメント
回答 (1 件)
Ameer Hamza
2018 年 5 月 3 日
See xlsread() and readtable(). These function can load the data from an excel file into the workspace. You will need a for loop to read and extract data from all the file. Refer here for the procedure to read all excel file one by one. After the data is loaded into the workspace, you can apply your learning algorithm.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!