Simple Question about Optimization of a FOR loop

2 ビュー (過去 30 日間)
Mohsen
Mohsen 2013 年 6 月 14 日
How can I optimize (vectorize?) the following code in order to avoid the for loop and make the code to run faster?
for i=1:55;
A(i)=B((i-1)*3+1,1);
end
A is 1 x 55 and B is 165 x 1
Many thanks!
  3 件のコメント
Laila Kazemi
Laila Kazemi 2013 年 6 月 14 日
bc ur only assigning one raw to A
Mohsen
Mohsen 2013 年 6 月 14 日
You are both right!
A is 1 x 55
Do you know how to optimize the for loop? Thanks!

サインインしてコメントする。

回答 (2 件)

Laila Kazemi
Laila Kazemi 2013 年 6 月 14 日
C= B*3 +1 A (1:55, 1:55)= C(1:55, 1)
but the dimensions of ur matrices dont match , if B was 55 by 1 , it would have worked
  3 件のコメント
Laila Kazemi
Laila Kazemi 2013 年 6 月 14 日
actaully instead one make a matrix called D with D( , 1:165)=(1)
Mohsen
Mohsen 2013 年 6 月 16 日
Thanks for your answer but it doesn't seem to be the right answer... Please note that the multiplication by 3 and the addition by 1 is used to access the content of each element and not to modify the content of the elements...
I found this answer and it worked:
A=B(1:3:55*3,1);
Thanks again.

サインインしてコメントする。


Andrei Bobrov
Andrei Bobrov 2013 年 6 月 14 日
A(1,:) = B((0:size(A,2)-1)*3+1);
  1 件のコメント
Mohsen
Mohsen 2013 年 6 月 16 日
Thanks for your answer but it doesn't seem to be the right answer...
I found this answer and it worked:
A=B(1:3:55*3,1);
Thanks again.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSolver Outputs and Iterative Display についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by