Filter löschen
Filter löschen

Getting a increasing by the nxn matrix inside a for loop

1 Ansicht (letzte 30 Tage)
Mark Loui
Mark Loui am 18 Mär. 2021
Kommentiert: KSSV am 18 Mär. 2021
HI there i dont quite understand how to get a matrix that is increasing by nxn matrix
like for example
n=100
for i=1:n
matrixA=[1x1] matrix
iter1
matrixA=[2x2] matrix
iter 2
and so on until the 100x100 matrix, so
end
it would also help if the matrix i get can be used for the diag function?
Help is appreciated thank you in advance

Akzeptierte Antwort

KSSV
KSSV am 18 Mär. 2021
Bearbeitet: KSSV am 18 Mär. 2021
n=100 ;
matrixA = cell(n,1) ;
for i=1:n
matrixA{i} = rand(n) ;
end
  6 Kommentare
Mark Loui
Mark Loui am 18 Mär. 2021
Ok then can i ask how to fill up the matrix with any values
KSSV
KSSV am 18 Mär. 2021
That any is random....
n=100 ;
matrixA = cell(n,1) ;
for i=1:n
matrixA{i} = rand*diag(repmat(i,1,i)) ;
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by