How is modeled the more short time this loop?

Hi everybody, i have the for loop, but loop time is very long. How can i make the more short time?
R=rand(1,3000);
W=zeros(1,length(R));
for i=1:length(R)+1
for ii=1:length(R)-i+1
W(i)=W(i)+R(ii)*R(ii+i-1)
end
end

 채택된 답변

DGM
DGM 2021년 8월 28일
편집: DGM 2021년 8월 28일

0 개 추천

I bet this can be simplified further, but here.
l = 4;
R = rand(1,l);
W = zeros(1,l);
for k = 1:l
W(k) = sum(R(1:l-k+1) .* R(k:end));
end
EDIT: Updated to match question change. Also, echoing to console takes a considerable amount of time.

댓글 수: 4

Erkan
Erkan 2021년 8월 28일
Thank you so much, i will examine and write the answer
Erkan
Erkan 2021년 8월 28일
Hi DGM, firstly i have mistaked while writing the question;
it must be W(i)=W(i)+R(ii)*R(ii+i-1). For this state i excuse me. if it possible, can you examine again?
DGM
DGM 2021년 8월 28일
Edited.
Erkan
Erkan 2021년 8월 28일
Yes, it is right working, thank you so much.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 MATLAB에 대해 자세히 알아보기

제품

질문:

2021년 8월 28일

댓글:

2021년 8월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by