write matlab code for this expression

回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 6 月 20 日

0 投票

appears to be a set of functions. You will need to use a cell array of function handles and index it like
tau{i,j}(t)
You will need a loop similar to
denom = 0;
for m = reshape(unique(U_k), 1, [])
denom = denom + t{i,m}(t).^alpha .* eta(i,m).^beta;
end

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

製品

質問済み:

2023 年 6 月 20 日

コメント済み:

2023 年 6 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by