I have few vectors at the same length that contains numbers. I want to export them to the Excel or Word. how i do it?

 채택된 답변

Guillaume
Guillaume 2015년 6월 8일

0 개 추천

v1 = [1 2 3 4 5]; v2 = [6 7 8 9 10]; v3 = [11 12 13 14 15];
xlswrite('somefile.xlsx', [v1;v2;v3]);

추가 답변 (1개)

Peter Perkins
Peter Perkins 2015년 6월 8일

3 개 추천

Alternatively,
>> v1 = [1 2 3 4 5]'; v2 = [6 7 8 9 10]'; v3 = [11 12 13 14 15]';
>> t = table(v1,v2,v3)
t =
v1 v2 v3
__ __ __
1 6 11
2 7 12
3 8 13
4 9 14
5 10 15
>> writetable(t,'somefile.xlsx');

댓글 수: 6

eran golden
eran golden 2015년 6월 10일
is it possicle that "table" function doesn't exist in the version of 2011?
Guillaume
Guillaume 2015년 6월 10일
Yes, it came with 2013b or 2014a
You saved my day
Thanks
Thank you....very very much
Lukas Sokol
Lukas Sokol 2021년 3월 18일
much love

댓글을 달려면 로그인하십시오.

카테고리

질문:

2015년 6월 8일

댓글:

2021년 3월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by