Upload data to uitable
Mostra commenti meno recenti
%Upload Data in uitable3
handles.output=hObject;
[file,path]=uigetfile({'*.xls;*.xlsx','Excel Files'},'Select data file');
filename=strcat(path,file);
set(handles.upload);
data=xlsread(filename);
set(handles.uitable3,'Data',data
Column 1 consist of strings (words) and column 2 consist of integers.
But the strings don't upload; only the integers upload to the table.
How can I get the data strings to upload in column 1?
Thank you in advance!
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Develop Apps Using App Designer in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!