How i can call matrix c(a) and c(b) as in photo

6 Ansichten (letzte 30 Tage)
ismail alakel
ismail alakel am 11 Apr. 2022
Beantwortet: Mahmoud Ashraf am 12 Apr. 2022
  4 Kommentare
Mahmoud Ashraf
Mahmoud Ashraf am 11 Apr. 2022
can you said what the is the index of the cell you need
c matrix with two rows and four columns.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Mahmoud Ashraf
Mahmoud Ashraf am 12 Apr. 2022
syms a b c
a=zeros(a1,a2);
b=ones(b1,b2);
A=size(a);
B=size(b);
c=[a,b];
A2=c(1:a1,1:a2)
B2=c( 1: b1, a2+1 : a1+b2 )
if i understand you this will be the correct answer with defining the size of the a and b matrices

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by