Vectorization problem with assignments

2 ビュー (過去 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 Center および File ExchangeGet Started with Optimization Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by