Pre-allocating cell array of anonymous functions

1 回表示 (過去 30 日間)
Thomas
Thomas 2023 年 5 月 25 日
編集済み: Thomas 2023 年 5 月 25 日
Hi
I would apricate if someone can help me how to pre-allocate a cell array of anonymous functions that is later defined in a for loop. I do not what to run the loop backwards.
The for loop below exemplify what I want to do:
for q=1:q_tot
my_fun_array{q}=@(x)x^q;
end
best regard
Thomas

採用された回答

Rik
Rik 2023 年 5 月 25 日
You can pre-allocate the cell array itself, but the contents will have to be set in the loop itself:
my_fun_array = cell(1,q_tot);
for q=1:q_tot
my_fun_array{q} = @(x)x^q;
end
Just an extra note: if you are planning to allow array inputs, you may want to use .^ instead.
  1 件のコメント
Thomas
Thomas 2023 年 5 月 25 日
編集済み: Thomas 2023 年 5 月 25 日
Great, thanks!
I whas a bit hasty then I wrote the function in the exemplification.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by