I have a simple Excel table with two columns. After importing the table into MATLAB, I want the names from column 1 to be declared as variables with corresponding values from column 2.
So in MATLAB, it would look like this:
House = "Villa"
Street = "Grand avenue"
Number = 88
Country = "US"
Example below:
How to do this?
