Effacer les filtres
Effacer les filtres

copy and paste datas from two Arrays into one

2 vues (au cours des 30 derniers jours)
simone zappalà
simone zappalà le 12 Mai 2022
I want to create an array containig datas from two different arrays (with the same colmuns but different rows).
A=[3 4 6]
B=[5 7 9
11 14 17]
C=[3 4 6
5 7 9
11 14 17]
this is an example, i need the order a gave in C.

Réponses (1)

Star Strider
Star Strider le 12 Mai 2022
At leasty two options for this —
A = [3 4 6];
B = [5 7 9
11 14 17];
C = [A; B]
C = 3×3
3 4 6 5 7 9 11 14 17
C = cat(1,A,B)
C = 3×3
3 4 6 5 7 9 11 14 17
.

Catégories

En savoir plus sur Data Types 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