How to use genvarname variable after creation?
Mostra commenti meno recenti
let's take an ex. from here:
"Example 2
Read a column header hdr from worksheet trial2 in Excel® spreadsheet myproj_apr23:
[data hdr] = xlsread('myproj_apr23.xls', 'trial2');
Make a variable name from the text of the column header that will not conflict with other names:
v = genvarname(['Column ' hdr{1,3}]);
Assign data taken from the spreadsheet to the variable in the MATLAB workspace:
eval([v '= data(1:7, 3);']);"
How do I use the variable that is created?
1 Commento
"How do I use the variable that is created?"
By using more slow, complex, inefficient code just like the code that you used to create that variable.
Is there a particular reason why you cannot use simpler and more efficient code (e.g. indexing, tables)?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Spreadsheets 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!