save matlab output to excel

17 views (last 30 days)
maryam
maryam on 2 Sep 2013
Commented: frankenberry on 26 Mar 2020
hi
i have some data in command window like:
n x y
1 9 7
2 2.5 3
3 45 23
.. .. ..
and i want to write them on excel file,in 3 different columns,could any body help me?
thanks in advance

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 2 Sep 2013
Edited: Azzi Abdelmalek on 2 Sep 2013
If M is your matrix
M=[1 9 7;2 2.5 3;3 45 23]
xlswrite('yourfile.xls',M)
  3 Comments
frankenberry
frankenberry on 26 Mar 2020
Azzi, any idea how to output to excel's next row in appdesigner?

Sign in to comment.

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!