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 Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by