フィルターのクリア

I have a excel file which contains both number and txt, I wanna assign whole values in this excel file to the listbox

4 ビュー (過去 30 日間)
for example,
first column of the excel file includes only txt second column of the excel file includes only num third column of the excel file includes only num
the excel file's size nx3
I wanna assign these nx3 into the list box with both txt and num.

採用された回答

Yao Li
Yao Li 2013 年 5 月 16 日
  1. Import data to Matlab by implementing xlsread()
  2. Create a cell variable and assign all the n*3 data to the cell variable
  3 件のコメント
Yao Li
Yao Li 2013 年 5 月 16 日
Why no use Table in GUI in place of listbox?
Yao Li
Yao Li 2013 年 5 月 16 日
Try
set(handles.listbox1,'String',{'1 2','3 4'});
I think you can find what you want from this example.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by