Fill a nxm matrix with vectorised expression
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
Konstantin
2020 年 10 月 16 日
sometimes it works to vectorize the function itself
matrix = another_function(matrix)
採用された回答
Matt J
2020 年 10 月 16 日
編集済み: Matt J
2020 年 10 月 16 日
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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!