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)
Ältere Kommentare anzeigen
how to show that in matlab??
0 Kommentare
Antworten (1)
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
0 Kommentare
This question is locked.
Siehe auch
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!