How to create variables L1, L2, L3,.... Ln and assign user input values from GUIDE to these variables.

7 views (last 30 days)
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)

Walter Roberson
Walter Roberson on 1 Dec 2015

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!