Making a matrix dimension biggere
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Rasmus
am 25 Feb. 2014
Bearbeitet: Mischa Kim
am 25 Feb. 2014
Okay I have two matrices
k_fil =
-46 -43 -26 -14 7 19 11 32 39 45 45
0 4 7 7 44 44 7 7 15 15 0
and
k_omv =
45 45 39 32 11 19 7 -14 -26 -43 -46
0 -15 -15 -7 -7 -44 -44 -7 -7 -4 0
How do i add these, so that i get a matrix that is 2x22 ??
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 25 Feb. 2014
Bearbeitet: Mischa Kim
am 25 Feb. 2014
Try
k = [k_fil k_omv]
alternatively, you could use
k = horzcat(k_fil, k_omv)
assuming that you do want to concatenate the arrays.
0 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!