Info

This question is locked. Rouvrir pour modifier ou répondre.

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

6 vues (au cours des 30 derniers jours)
윤식
윤식 le 9 Avr 2023
Locked: John D'Errico le 13 Déc 2024
how to show that in matlab??

Réponses (1)

KALYAN ACHARJYA
KALYAN ACHARJYA le 9 Avr 2023
Modifié(e) : KALYAN ACHARJYA le 9 Avr 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.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by