write matlab code for this expression

2 vues (au cours des 30 derniers jours)
Lohith
Lohith le 20 Juin 2023
Commenté : Lohith le 20 Juin 2023

Réponses (1)

Walter Roberson
Walter Roberson le 20 Juin 2023
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

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by