avoding loops by vectorization

조회 수: 5 (최근 30일)
Lee
Lee 2011년 6월 29일
Hello,
I am trying to rewrite a for loop by using vectors. The loop is:
for i=1:8 outer_x(i,:)=x_i(i)+d_del(1,i)*cos(t); end
where d_del is 2x8, x_i is 1x8, and cos(t) is 1x6284
The loop does the following: outer_x(1,:)=x_i(1)+d_del(1,1)*cos(t); outer_x(2,:)=x_i(2)+d_del(1,2)*cos(t); outer_x(3,:)=x_i(3)+d_del(1,3)*cos(t); etc
I tried the following: x_i(1:end)+d_del(1,(1:end))*cos(t);
I was hoping to take each entry of d_del and multiply with every entry of cos(t), but it does not work. Any help will be greatly appreciated!
  댓글 수: 1
Sean de Wolski
Sean de Wolski 2011년 6월 29일
You say d_del = 2x8; do you use only the first row? You never access d_del(2,anything)

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

답변 (4개)

Oleg Komarov
Oleg Komarov 2011년 6월 29일
outer_x = bsxfun(@plus, x_i, d_del(1,:)*cost.');
Don't use cos (i renamed it in cost) as a variable since it's already a builtin matlab function. If t is the 1 by 6284 variable then ignore my previous comment.
  댓글 수: 1
Matt Fig
Matt Fig 2011년 6월 29일
I believe that lee meant to take the cosine of a vector t...

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


Andrei Bobrov
Andrei Bobrov 2011년 6월 29일
outer_x = bsxfun(@plus,d_del(1,:)'*cos(t),x_i');
  댓글 수: 2
Sean de Wolski
Sean de Wolski 2011년 6월 29일
Nice Answer! :)
Andrei Bobrov
Andrei Bobrov 2011년 6월 29일
all +1

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


Sean de Wolski
Sean de Wolski 2011년 6월 29일
outer2 = bsxfun(@plus,(d_del(1,:).')*cos(t),x_i.');
produces the same result as your loop.

Laura Proctor
Laura Proctor 2011년 6월 29일
This should do it:
outer_x_new = x_i'*ones(size(t))+d_del(1,:)'*cos(t);

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by