Vectorization problem with assignments

조회 수: 1 (최근 30일)
Marcos
Marcos 2021년 11월 16일
답변: Salman Ahmed 2021년 11월 19일
Good afternoon. I was trying to vectorize the following code in order to make it faster, however I was unable to do so. I can't also imagine about how to do it looking into the MATLAB examples of vectorization MATLAB. I would be very grateful if somebody could give me help about how to do it.
cols = zeros(length(vector1),dims);
for i=1:length(vector1)
cols(i,:) = Vector2(vector1(i),1:dims);
end
Thank you very much.
Marcos
  댓글 수: 1
David Hill
David Hill 2021년 11월 16일
Give examples of vector1, vector2, and desired output.

댓글을 달려면 로그인하십시오.

답변 (1개)

Salman Ahmed
Salman Ahmed 2021년 11월 19일
Hi Marcos,
You can use the following to vectorize your loop.
cols = Vector2(vector1,1:dims);

카테고리

Help CenterFile Exchange에서 Problem-Based Optimization Setup에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by