output to a variable name

3 Ansichten (letzte 30 Tage)
Leyon
Leyon am 31 Okt. 2013
Kommentiert: Leyon am 31 Okt. 2013
outputFile is a 1x2 cell that contains 2 string names ('apple' and 'peach')
I want to assign those names to the output of a file:
outputFile(1) = importdata(char(filename(1)))
I get the following error:
Error using subsindex Function 'subsindex' is not defined for values of class 'cell'.
How can I get it to do what I need if it can do it? Any suggestions would help?

Akzeptierte Antwort

Matt J
Matt J am 31 Okt. 2013
The proper way is to make the names dynamic fields of a struct, e.g.,
s.(outputFile{1})=....
I get the following error: Error using subsindex Function 'subsindex' is not defined for values of class 'cell'.
Don't think so. Not from the code you've shown. A full copy/paste of the error message text would reveal more, however.
  1 Kommentar
Leyon
Leyon am 31 Okt. 2013
I saved the file and cleared my workspace and now it works. Thanks.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Variables finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by