필터 지우기
필터 지우기

How to implement this equation in matlab,i am basic level?

조회 수: 2 (최근 30일)
Paramesh
Paramesh 2015년 11월 27일
답변: Thorsten 2015년 11월 27일

답변 (1개)

Thorsten
Thorsten 2015년 11월 27일
T and Vt can be of arbitrary size and dimensions, as long as both T and Vt have the same size and dimensions.
ind = Rt >= 0;
Rt(ind) = T(ind) - Vt(ind);
You can put that into an infinite loop
dont_stop = 1;
while dont_stop
% copy above code here
end
that can be stopped typing CRTL-C. But usually you want to define a stop criterium inside the loop.

카테고리

Help CenterFile Exchange에서 Software Development Tools에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by