Saving text and data to an excel file

If I have the following text and data:
a = {'N', 'NE', 'E'};
b=[1 2 3];
How to I save the text and data as a 2 x 3 matrix to an excel file?
N E S
1 2 3

 Akzeptierte Antwort

Friedrich
Friedrich am 16 Jan. 2014

0 Stimmen

Hi,
try
xlswrite('out.xlsx',[a;num2cell(b)])

Weitere Antworten (0)

Gefragt:

am 16 Jan. 2014

Beantwortet:

am 16 Jan. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by