How to create variables L1, L2, L3,.... Ln and assign user input values from GUIDE to these variables.
Show older comments
I have a GUI table from GUIDE where the user inputs values in the third column. Now I would like to create variables L1, L2, L3, ...... up to Ln (where n is also specified by the user in the GUI) and assign the values from the third column to each of these variables. How can I do this? I gave the following code for j=1:n-1 eval(sprintf('L%d = %d', j, tableData(j,3))) end
But Matlab says sprintf function is not defined for cell inputs.
Answers (1)
Categories
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!