필터 지우기
필터 지우기

How to eliminate the for loop but end with the same result

조회 수: 2 (최근 30일)
Bryce McCord
Bryce McCord 2022년 9월 2일
답변: Star Strider 2022년 9월 2일
A = input('Using brackets, enter a vector: ')
for i=1:length(A)
if(A(i) > 0)
B(i) = A(i).^3;
else
B(i) = 0;
end
end
B
How can I convert this code so that when the for loop and if statement are deleted the code still has the same output?

채택된 답변

Star Strider
Star Strider 2022년 9월 2일
Try something like this —
A = -3:3;
B = A.^3.*(A>0)
B = 1×7
0 0 0 0 1 8 27
It uses a version of ‘logical indexing’.
.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by