在matlab中将一个table对象写入csv
Write a table object into csv in matlab
我在 Matlab 中有一个 table 对象,其单元格如快照所示:
Land和Seamark里面的单元格如下:
对象class如下:
>> class(FileData.gTruth.LabelData.Land)
ans =
'cell'
>> class(FileData.gTruth.LabelData.Land{1,1})
ans =
'double'
>> class(FileData.gTruth.LabelData)
ans =
'table'
我尝试了一些语法,例如 writetable
和 csvwrite
,但我没有得到正确的输出格式。如图所示,Land and Seamark 的读数变得混乱(读数是按列排列的,而不是 row-wise)。
我希望我的输出顺序如下:
[1063 126 115 86] [1 169 158 147;1 104 165 66;728 105 276 43;950 113 971 40;1 107 810 23;227 133 48 15;618 131 107 20] [562 220 33 51;1736 167 26 28;532 130 18 15;393 129 23 14]
到目前为止的代码:
writetable(FileData.gTruth.LabelData,'labelled1.txt','Delimiter' , ';');
你可以简单地使用 reshape 对二维矩阵的转置来构建一个新的 table:
Ship = [1063 126 115 86]
Land = {[1 169 158 147;1 104 165 66; 728 105 276 43; 950 113 971 40; 1 107 810 23; 227 133 48 15; 618 131 107 20]}
Seamark = {[562 220 33 51; 1736 167 26 28; 532 130 18 15; 393 129 23 14]}
t = table(Ship,Land,Seamark);
t2 = table(t.Ship,reshape(t.Land{:}.',1,[]),reshape(t.Seamark{:}.',1,[]))
writetable(t2,'mycsv.csv','WriteVariableNames',false)
mycsv.csv
文件的第一行也是唯一一行是:
1063 126 115 86 1 169 158 147 1 104 165 66 728 105 276 43 950 113 971 40 1 107 810 23 227 133 48 15 618 131 107 20 562 220 33 51 1736 167 26 28 532 130 18 15 393 129 23 14
我使用了WriteVariableNames,false
Name-Value pair 来表示变量名不包含在文件的第一行中。
我在 Matlab 中有一个 table 对象,其单元格如快照所示:
Land和Seamark里面的单元格如下:
对象class如下:
>> class(FileData.gTruth.LabelData.Land)
ans =
'cell'
>> class(FileData.gTruth.LabelData.Land{1,1})
ans =
'double'
>> class(FileData.gTruth.LabelData)
ans =
'table'
我尝试了一些语法,例如 writetable
和 csvwrite
,但我没有得到正确的输出格式。如图所示,Land and Seamark 的读数变得混乱(读数是按列排列的,而不是 row-wise)。
我希望我的输出顺序如下:
[1063 126 115 86] [1 169 158 147;1 104 165 66;728 105 276 43;950 113 971 40;1 107 810 23;227 133 48 15;618 131 107 20] [562 220 33 51;1736 167 26 28;532 130 18 15;393 129 23 14]
到目前为止的代码:
writetable(FileData.gTruth.LabelData,'labelled1.txt','Delimiter' , ';');
你可以简单地使用 reshape 对二维矩阵的转置来构建一个新的 table:
Ship = [1063 126 115 86]
Land = {[1 169 158 147;1 104 165 66; 728 105 276 43; 950 113 971 40; 1 107 810 23; 227 133 48 15; 618 131 107 20]}
Seamark = {[562 220 33 51; 1736 167 26 28; 532 130 18 15; 393 129 23 14]}
t = table(Ship,Land,Seamark);
t2 = table(t.Ship,reshape(t.Land{:}.',1,[]),reshape(t.Seamark{:}.',1,[]))
writetable(t2,'mycsv.csv','WriteVariableNames',false)
mycsv.csv
文件的第一行也是唯一一行是:
1063 126 115 86 1 169 158 147 1 104 165 66 728 105 276 43 950 113 971 40 1 107 810 23 227 133 48 15 618 131 107 20 562 220 33 51 1736 167 26 28 532 130 18 15 393 129 23 14
我使用了WriteVariableNames,false
Name-Value pair 来表示变量名不包含在文件的第一行中。