Effacer les filtres
Effacer les filtres

Fill a nxm matrix with vectorised expression

3 vues (au cours des 30 derniers jours)
Andrea Agosti
Andrea Agosti le 16 Oct 2020
Commenté : Konstantin le 16 Oct 2020
Hi all,
here my doubt: i have a matrix M with dimensions nxm. The matrix is initially initialised with zeros, and i fill each M(i,j) calling another function:
M = zeros(n,m)
for i = 1:n
for j = 1:m
M(i,j) = another_function(several_inputs);
end
end
is it possible to fill the matrix M without the for loops, but instead using a vectorised expression?
Thanks
  4 commentaires
Andrea Agosti
Andrea Agosti le 16 Oct 2020
Hi, thanks for your aswer. The inputs of the another_function are different for each i,j.
Thanks
Konstantin
Konstantin le 16 Oct 2020
sometimes it works to vectorize the function itself
matrix = another_function(matrix)

Connectez-vous pour commenter.

Réponse acceptée

Matt J
Matt J le 16 Oct 2020
Modifié(e) : Matt J le 16 Oct 2020
No, there is no way to vectorize an element-wise function generically, without considering the specifics of the function. You can avoid for-loop syntax by using arrayfun, but this simply hides the loops from view, it doesn't replace them with something more efficient.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by