how to make a 12x12 matrix form 4x4:))
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Habib Muhammad
am 16 Nov. 2016
Kommentiert: Habib Muhammad
am 16 Nov. 2016
i have a matrix which is 4x4 and i want to putt it in 12x12 matrix at specific points like 1st and 2nd rows and column of 4x4 at at 1st and 2nd rows and column of 12x12 and 3rd and 4th rows and columns of 4x4 at 7th and 8th rows and columns of 12x12 . how can i do that.. i am attaching both the matrices.. Kindly have a look...
0 Kommentare
Akzeptierte Antwort
KSSV
am 16 Nov. 2016
Are you expecting something like this?
k = rand(4) ;
m = repmat(k,[3,3]) ;
check m, it will have k four times repeated.
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!