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일)
윤식
윤식 2023년 4월 9일
Locked: John D'Errico 2024년 12월 13일
how to show that in matlab??

답변 (1개)

KALYAN ACHARJYA
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

This question is locked.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by