フィルターのクリア

Importing CSV files in MATLAB

3 ビュー (過去 30 日間)
T
T 2013 年 6 月 11 日
Suppose I have the following lines in a .csv file:
Date,Time,Ch1:
09/07/2007,12:26:51.000,10.684
09/07/2007,12:26:51.005,14.957
If one used an older version of Excel, these would automatically be placed in three columns without the commas. However, the above is not the case.
I was wondering how to convert these strings into an array.

採用された回答

T
T 2013 年 6 月 19 日
int = size(raw,2);
if int == 3 raw ...
elseif int == 4
raw ...
end

その他の回答 (1 件)

Iain
Iain 2013 年 6 月 11 日
[n, t, r] = xlsread(filename);

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by