write matlab code for this expression

2 次查看(过去 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

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by