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

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.

Categories

Tags

Asked:

on 1 Dec 2015

Answered:

on 1 Dec 2015

Community Treasure Hunt

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

Start Hunting!