Using xlswrite with cell array containing strings and numbers
4 views (last 30 days)
Show older comments
Hi all,
How could I use xlswrite to write my (n x 3) cell array into an excel spreadsheet? Xlswrite is only compatible with arrays, and at face value converting cells to arrays doesn't seem to difficult. However, my major problem is that my string values have different lengths, which will create a dimensional error if I try to move all of data into one large array.
My data looks something like this:
[5] ['fadfafdas'] ['safdafas']
[24] ['dfd'] ['dds'] ...
Where string-cells in the same row are of equal lengths. Any ideas of how I can write this data into an excel file?
Thanks!
0 Comments
Answers (2)
Andrei Bobrov
on 8 Oct 2012
A = {[5] ['fadfafdas'] ['safdafas']
[24] ['dfd'] ['dds']}
xlswrite('yourxlsfile.xlsx',A)
0 Comments
See Also
Categories
Find more on Spreadsheets in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!