Writing variable as filename using csvwrite

9 ビュー (過去 30 日間)
B_Richardson
B_Richardson 2011 年 7 月 12 日
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 日
token = strtok(itemselected, '.')
csvwrite([token],A)
That works perfectly!
  1 件のコメント
Oleg Komarov
Oleg Komarov 2011 年 7 月 12 日
Not cool at all.

サインインしてコメントする。

その他の回答 (1 件)

Nathan Greco
Nathan Greco 2011 年 7 月 12 日
Try writing:
csvwrite(filename,A); %without quotes
  4 件のコメント
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.
Walter Roberson
Walter Roberson 2011 年 7 月 12 日
Please cross-check
class(itemselected)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by