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 Exchange에서 Matrix 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