how to define a matrix element in matlab

3 visualizzazioni (ultimi 30 giorni)
any help please , I need to replace the first colunm in matrix with diffrent size by another value!!!
as example :
input
A=[1 2; 3 4];
B=[5 6; 7 8; 9 1; 1 4];
Output
B=[1 2; 3 4 ;9 1; 1 4]

Risposta accettata

Matt J
Matt J il 29 Set 2022
Modificato: Matt J il 29 Set 2022
B(1:2,1:2)=A

Più risposte (2)

Torsten
Torsten il 29 Set 2022
A=[1 2; 3 4];
B=[5 6; 7 8; 9 1; 1 4];
B(1:2,1:2) = A;
B
B = 4×2
1 2 3 4 9 1 1 4

Image Analyst
Image Analyst il 2 Ott 2022
To learn how to do this and other very basic things, invest two hours here:

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by