필터 지우기
필터 지우기

Am i correct with my conversion of a Logical indexing to a for loop?

조회 수: 2 (최근 30일)
Zachary Holmes
Zachary Holmes 2015년 12월 2일
답변: Thorsten 2015년 12월 2일
Logical indexing is:
T ( T > 10) = 10;
My Loop is:
for (T>10)
T = 10?
Also how could i do a while loop?
thanks

답변 (2개)

Walter Roberson
Walter Roberson 2015년 12월 2일
Your loop variable should be over all the valid indices of the array, and inside the loop you should have a test that decides what to do.
Once you understand while loops from your other questions you should be able to do the conversion for this question as well.

Thorsten
Thorsten 2015년 12월 2일
for i = find(T > 10)
T(i) = 10;
end

카테고리

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