Dynamic Array update without for loop

조회 수: 3 (최근 30일)
Vick
Vick 2019년 7월 22일
편집: Matt J 2019년 7월 22일
Dear All,
Is there any possibilty to run below mentioned code without using FOR loop as run time is higher with loops,
A=rand(100000,1);B=rand(100000,1);
Out=zeros(length(A),1);
for i=2:length(A)
Out(i)=0.1*Out(i-1)+(0.9*(A(i-1)-B(i)));
end
  댓글 수: 2
Walter Roberson
Walter Roberson 2019년 7월 22일
I suspect that filter() or related functions could be used
Vick
Vick 2019년 7월 22일
Hi Walter, Can you give some example code for this function. You are right that the function is a kind of transfer function. I don't know how to give the filter constant in this case is (0.1), taking from the pervious time and (1-0.1) taking from other calculation.

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

채택된 답변

Matt J
Matt J 2019년 7월 22일
편집: Matt J 2019년 7월 22일
X=0.9*(A(1:end-1)-B(2:end));
Out=[0; filter(1,[1,-0.1],X)];

추가 답변 (0개)

카테고리

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