在 MATLAB 中导入 CSV 文件
如何将 CSV 文件导入 MATLAB?我正在使用的文件中的一行如下所示:
SUNW,2-Jan-98,1998,5,40.125,41.5
有 36 列和 10107 行。第一行包含列标题。 MATLAB 似乎不支持导入此类 CSV 文件。使用以下 textscan
函数将整个数据读取到一个元胞数组中。
data = textscan(fid, '%s %s %d %d %f %f', ...
'HeaderLines',1, 'Delimiter',',', 'CollectOutput',1);
有没有办法可以将每列的数据读入不同的变量?
How can I import a CSV file into MATLAB?. A row in the file i am working with looks like:
SUNW,2-Jan-98,1998,5,40.125,41.5
There are 36 columns and 10107 rows. The first row contains the column headers. It seems that MATLAB doesn't support importing such kind of CSV files. Using the following textscan
function reads the whole data into one cell array.
data = textscan(fid, '%s %s %d %d %f %f', ...
'HeaderLines',1, 'Delimiter',',', 'CollectOutput',1);
Is there a way I could read the data into different variable for each column?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
textscan
文档中的示例 6 似乎涵盖您感兴趣的用例:虽然它没有显式地将每一列分配给单独的变量,但您可以轻松执行类似
col1 = C{1};.
Example 6 in the
textscan
documentation seems to cover the use case that you're interested in:While it doesn't explicitly assign each column to a separate variable, you can easily do something like
col1 = C{1};
.如果您有 MATLAB 2011b,则可以使用电子表格导入工具 。
If you have MATLAB 2011b then you can use the spreadsheet import tool.