Hi people , when I save a variable in csv format i only see the variable but not the datas.
For example:
Frequency =1:100
xlswrite('Signals.xls','Frequency')
%Note: I have a Mac so i don’t have excel so matlab writes a csv file format.

 Accepted Answer

Don't use quotes around Frequency.
xlswrite('Signals.xls', Frequency)
It differs from the save() function, where you do use single quotes.

1 Comment

madhan ravi
madhan ravi on 16 Jul 2018
Edited: madhan ravi on 16 Jul 2018
Thank you sir , is there a possibility to save it to my numbers(similar to excel) application?

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!