フィルターのクリア

Efficiency: how can I define in a single line n matrices corresponding to n elements in a cell?

1 回表示 (過去 30 日間)
I have cell wholedff, which contains 11 elements.
wholedff={one,two,three,four,five,six,seven,eight,nine,ten,eleven};
I want to define 11 separated matrices out of that cell; so I would do:
dff1 = wholedff{1};
dff2 = wholedff{2};
dff3 = wholedff{3};
... And so on. Is there a way to do this in a single line of code? Thank you!

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 2 日
Although possible using eval(), there is a whole bunch of reason why it should never ever be done: https://www.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval
Always use arrays, they are efficient and easy to debug.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by