write matlab code for this expression
2 views (last 30 days)
Show older comments
Answers (1)
Walter Roberson
on 20 Jun 2023
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
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!