save cell array of strings and doubles to excel file

22 ビュー (過去 30 日間)
sh as
sh as 2016 年 4 月 15 日
編集済み: Kirby Fears 2016 年 4 月 15 日
Hi, a simple question.
How to save a cell array to a *.xls file? my cell array consists of 2 arrays. one is array of strings and the other is double. using the following command does not work and error occurs. (I have attached my features_score file):
xlswrite('features.csv',cell2mat(features_score(:,1)),'A1'); %array of strings
xlswrite('features.csv',cell2mat(features_score(:,2)),'A2'); %array of double
Error using cat
Dimensions of matrices being concatenated are not consistent.
Error in cell2mat (line 83)
m{n} = cat(1,c{:,n});
Thank you in advance

採用された回答

Kirby Fears
Kirby Fears 2016 年 4 月 15 日
You can write cells directly to the file. If you're using xlswrite, you should specify a target file with an .xls or .xlsx extension.
Here's a simple way to do it with dummy data. You should be able to use it with your data the same way.
c1 = {'string';'data';'cell'};
c2 = {1;2;3};
xlswrite('features.xls',[c1,c2]);
Assuming c1 and c2 are Mx1 cell arrays, this will write M rows into columns A and B of the first sheet.
  8 件のコメント
sh as
sh as 2016 年 4 月 15 日
編集済み: sh as 2016 年 4 月 15 日
Ah, yes.
Do you mean fprintf for xls file? or change my file to a *.txt file?
Kirby Fears
Kirby Fears 2016 年 4 月 15 日
編集済み: Kirby Fears 2016 年 4 月 15 日
A delimited text file such as *.csv. I've provided a solution with fprintf in your other thread:

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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