Info

This question is locked. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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 Ansichten (letzte 30 Tage)
how to show that in matlab??

Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 9 Apr. 2023
Bearbeitet: KALYAN ACHARJYA am 9 Apr. 2023
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.

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by