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

listbox

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.

Best Answer

  1. Import data to Matlab by implementing xlsread()
  2. Create a cell variable and assign all the n*3 data to the cell variable
Related Question