How can I convert multiple mat files in one csv file for my dataset, or can create datasource for further processing with feature extraction method. There are 2 matrices. testCase fields are shown and another is IAT i.e. continuous time series data.
    조회 수: 9 (최근 30일)
  
       이전 댓글 표시
    

댓글 수: 0
채택된 답변
  Pankhuri Kasliwal
    
 2020년 10월 7일
        Hi, 
Try this :
d=dir(fullpath(dirname,'*.mat'));
for i=1:length(d)
  load(d(i).name     % will leave whatever variable is in mat-file in memory
  [p,n]=fileparts(d(i).name);         % get path, name w/o extension
  csvwrite([fullfile(p,n) '.csv'],X)  % write to name w/ .csv extension
end
Additionally, refer to the following links for more details : 
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Database Toolbox에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

