Avoid for loops with if inside

*Hello everyone,
Can anyone show me how I can avoid following for loops, so that my run can be much faster? Any help is highly appreciated. Thanks!*
c2=0.7;
c1=0.3;
x1=rand(1,100)*10;
x3=rand(1,100)*10;
x3p=rand(1,100)*10;
x=[0.0000,0.2560,0.4980,0.7590,1.0000,1.2400,1.5000,1.7600,2.0100];
y=[0.3,0.133,0.0777,0.0695,0.0920,0.1078,0.0829,0.0807,0.0936];
for ix1=1:length(x1)
for ix3=1:length(x3)
for ix3p=1:length(x3p)
r= sqrt(x1(ix1)^2 + (x3(ix3)-x3p(ix3p))^2);
if r <= 10
g = fit(x',y','splineinterp');
Prs_22x(ix1,ix3,ix3p)= c2-c1+g(r/R);
else
Prs_22x(ix1,ix3,ix3p)= c2-c1+c1^2;
end
end
end
end

 채택된 답변

Matt Fig
Matt Fig 2012년 10월 4일
편집: Matt Fig 2012년 10월 4일

0 개 추천

Just taking this outside all loops will GREATLY speed it up.
g = fit(x',y','splineinterp');
Beyond that, you could do this (I assume R is a scalar):
P = bsxfun(@(x,y) (x-y),x3,reshape(x3p,1,1,numel(x3p)));
P = bsxfun(@(x,y) sqrt(x.^2+y.^2),x1.',P);
I = P<=10;
P(I) = c2-c1+g(P(I)/R);
P(~I) = c2-c1+c1^2;

추가 답변 (0개)

카테고리

도움말 센터File 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