For this given code, what would the variable var equal?
이전 댓글 표시
What value does var have given the code fragment?
for index = 1:2:7
if index <= 4
var(index) = index;
elseif index == 5
var(index) = 2;
else
var(index+1) = 1;
end
end
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Biological and Health Sciences에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!