quick itteration

조회 수: 1 (최근 30일)
Ahmed Hassaan
Ahmed Hassaan 2012년 4월 25일
Hello ,
I want a better speed in operating my code ,if i did enter a large number of points like 10000 it will operate in 10 mins or more and my processor is good enough ,this code is plotting points in a uniform shape like rectangular and randomly with different x and y , thanks for attention.
%%
RN=input('Enter number of points =');
U1=[];U2=[];
for i=1:RN
xa=-L/2+L*rand(1,1)+0.2*rand(1,1)-.4;
ya=-N/2+N*rand(1,1)+0.2*rand(1,1)-.4;
xra(i)=xa;yra(i)=ya; z=[xra(i) yra(i)];
sub1=z(1);sub2=z(2);U1=[U1;sub1];U2=[U2;sub2];
USERS=[U1 U2];
figure(1)
plot(xra(i),yra(i),'k.');hold on
end

채택된 답변

Daniel Shub
Daniel Shub 2012년 4월 25일
The best thing to do would be to move the plotting outside the loop:
...
end
figure(1);
plot(xra,yra,'k.');
  댓글 수: 1
Ahmed Hassaan
Ahmed Hassaan 2012년 4월 25일
thanks

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

추가 답변 (2개)

Junaid
Junaid 2012년 4월 25일
Though your code requires cleaning but this code will generate exact output you are required. In your code there are many variables which are not required.
RN=input('Enter number of points =');
L=input('Enter the length x =');
N=input('Enter the length y =');
U1=[];U2=[];
xa = -L/2+L*rand(RN,1)+0.2*rand(RN,1)-.4;
ya = -N/2+N*rand(RN,1)+0.2*rand(RN,1)-.4;
xra=xa;yra=ya; z=[xra yra];
sub1=z(:,1);sub2=z(:,2);U1=[U1;sub1];U2=[U2;sub2];
USERS=[U1 U2];
figure(1)
plot(xra,yra,'k.');

Junaid
Junaid 2012년 4월 25일
I guess this can be done in one line without using for loop, and second line for plot. Could you tell us about L, N and other varibales you are using in side loop
  댓글 수: 3
Ahmed Hassaan
Ahmed Hassaan 2012년 4월 25일
L=input('Enter the length x =');
N=input('Enter the length y =');
Daniel Shub
Daniel Shub 2012년 4월 25일
Without having timed it, my guess is the time improvement from complete vectorization will be small compared to the use of a single plot.

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

카테고리

Help CenterFile Exchange에서 Denoising and Compression에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by