Effacer les filtres
Effacer les filtres

how to define a matrix element in matlab

2 vues (au cours des 30 derniers jours)
marwa hajji
marwa hajji le 29 Sep 2022
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]

Réponse acceptée

Matt J
Matt J le 29 Sep 2022
Modifié(e) : Matt J le 29 Sep 2022

Plus de réponses (2)

Torsten
Torsten le 29 Sep 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 le 2 Oct 2022
To learn how to do this and other very basic things, invest two hours here:

Catégories

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