Writing variable as filename using csvwrite
Show older comments
Hello Community,
I have a simple problem: I am trying to use the currently selected item from a listbox as the filename in csvwrite:
indexselected = get(handles.listbox1,'Value');
list = get(handles.listbox1,'String');
itemselected = list{indexselected};
filename = intemselected;
csvwrite('filename', A);
this prints literally "filename" as the name of the file instead of the the actual contents of the variable.
Here is the matlab HELP description for csvwrite: csvwrite(filename,M) writes matrix M into filename as comma-separated values. The filename input is a string enclosed in single quotes.
Any suggestions?
Accepted Answer
More Answers (1)
Nathan Greco
on 12 Jul 2011
Try writing:
csvwrite(filename,A); %without quotes
4 Comments
B_Richardson
on 12 Jul 2011
B_Richardson
on 12 Jul 2011
Oleg Komarov
on 12 Jul 2011
filename = 'RHA_RL_INC_0003_v2.59806163.avi';
csvwrite(filename,10)
will create an *.avi-names file. Check it out and replace .avi with csv.
Walter Roberson
on 12 Jul 2011
Please cross-check
class(itemselected)
Categories
Find more on Adding custom doc 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!