Writing variable as filename using csvwrite

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?

 채택된 답변

B_Richardson
B_Richardson 2011년 7월 12일

0 개 추천

token = strtok(itemselected, '.')
csvwrite([token],A)
That works perfectly!

추가 답변 (1개)

Nathan Greco
Nathan Greco 2011년 7월 12일

0 개 추천

Try writing:
csvwrite(filename,A); %without quotes

댓글 수: 4

B_Richardson
B_Richardson 2011년 7월 12일
Yes, I tried that but it simply doesnt work without the quotes. I guess because the function specifies that the filename be enclosed in quotes:
"The filename input is a string enclosed in single quotes."
B_Richardson
B_Richardson 2011년 7월 12일
And just to make sure I checked the value within itemselected
itemselected =
RHA_RL_INC_0003_v2.59806163.avi
Oleg Komarov
Oleg Komarov 2011년 7월 12일
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.
Please cross-check
class(itemselected)

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

카테고리

도움말 센터File Exchange에서 Adding custom doc에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by