Fill a nxm matrix with vectorised expression
이전 댓글 표시
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일
What is the condition for selecting the function? Is the function different for each cell of the matrix, or is it possible, that the same function will be used for several cells?
KSSV
2020년 10월 16일
It depends on what your another_function is.
Andrea Agosti
2020년 10월 16일
Konstantin
2020년 10월 16일
sometimes it works to vectorize the function itself
matrix = another_function(matrix)
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!