• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-28
  • 语言: Matlab
  • 标签: csv  mat  

资源简介

基于MATLAB的代码,将csv格式数据转mat格式数据; 基于MATLAB的代码,将csv格式数据转mat格式数据

资源截图

代码片段和文件信息

% June 09 2016
% Sachin Shrestha
% Email: shr34.sachin@gmail.com
%
% Description:
%       Matlab script to read the csv file with common characters in
%       filename.
%       For e.g. to read the csv files starting with SampleCSV1_ like
%       SampleCSV1_1 SampleCSV1_2 SampleCSV1_3 etc from the folder
%       containing a lot of csv files starting with other names.
%       In MSDOS there is a wild card which is * and a question mark 
%       replaces the characters alike ??????*.csv.

%% 
% function 
sourceDir = ‘C:\Users\ARIA\Desktop\imu_data‘; % location of your csv files
sourceFiles = dir(fullfile(sourceDir ‘*.csv‘));    % filters 

评论

共有 条评论