write matlab code for this expression

1 回表示 (過去 30 日間)
Lohith
Lohith 2023 年 6 月 20 日
コメント済み: Lohith 2023 年 6 月 20 日

回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 6 月 20 日
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
  1 件のコメント
Lohith
Lohith 2023 年 6 月 20 日
Thank you

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

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by