Info
This question is locked. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Define an empty matrix Z. Using FOR statement for i = 1, . . . , 10, print out i and store i in the matrix Z at each iteration
조회 수: 2 (최근 30일)
이전 댓글 표시
답변 (1개)
KALYAN ACHARJYA
2023년 4월 9일
편집: KALYAN ACHARJYA
2023년 4월 9일
Hint: Complte it. Learn MATLAB Basics MATLAB Onramp
Z=zeros(1,10);
for i=1:10
i
Z(i)=........;% Complete it
end
댓글 수: 0
This question is locked.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!