Square Matris (diagonal)

11 vues (au cours des 30 derniers jours)
ukulele
ukulele le 22 Mar 2021
Modifié(e) : Jan le 24 Mar 2021
With the Nested For loop, the diagonals line number according to the value entered by the user.
I want to write a code that creates a square matrix as many as the number that the user enters, and the other elements that show are zero.Like this if users input 4, i want to see this
1 0 0 0
0 2 0 0
0 0 3 0
0 0 0 4

Réponses (1)

KSSV
KSSV le 22 Mar 2021
Modifié(e) : Walter Roberson le 22 Mar 2021
n = 4 ;
iwant = diag(1:n)
iwant = 4×4
1 0 0 0 0 2 0 0 0 0 3 0 0 0 0 4
with loop:
n = 4 ;
iwant = zeros(n) ;
for i = 1:n
iwant(i,i) = i ;
end
iwant
iwant = 4×4
1 0 0 0 0 2 0 0 0 0 3 0 0 0 0 4
  9 commentaires
Walter Roberson
Walter Roberson le 22 Mar 2021
Modifié(e) : Walter Roberson le 22 Mar 2021
n=input('Bir sayi giriniz=');
k=diag(1:n) %notice semi-colon removed
for i=1:n
k(n,n)=n %notice semi-colon removed
end
A statement that ends with a semi-colon does not display its value.
A statement that does not end with a semi-colon always displays its value if it was an assignment statement; if it was not an assignement statement, then in some cases it will show the value and in other cases it will not show the value, depending exactly what you were asking for.
ukulele
ukulele le 22 Mar 2021
i get it thank youuu

Connectez-vous pour commenter.

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by