Matlab:文字列を含むcsvファイルの読み込み方法

Matlabのバージョン

Matlab2021a

具体的なコマンド

file_name = 'test.csv';
data = readtable(file_name);

%% データ抽出
Name = data.Var1{1};