Need help using the for loop

조회 수: 1 (최근 30일)
Jose Grimaldo
Jose Grimaldo 2019년 10월 21일
댓글: David Hill 2019년 10월 22일
Test case
Check if AdjustMinValue(4, [2, 12, 9, 20], 10) returns [4, 12, 18, 20]

답변 (1개)

David Hill
David Hill 2019년 10월 22일
Not sure why you have to use a for-loop.
function dataSamples = adjustMinValue(dataSamples,minValue)
for i=1:length(dataSamples)
if dataSamples(i)<minValue
dataSamples(i)=2*dataSamples(i);
end
end
  댓글 수: 2
Jose Grimaldo
Jose Grimaldo 2019년 10월 22일
Code did not work
David Hill
David Hill 2019년 10월 22일
Works for me!

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

카테고리

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