How to create 2x2 array containing elements?

37 Ansichten (letzte 30 Tage)
Liam Bouchereau
Liam Bouchereau am 27 Okt. 2020
Kommentiert: Cameron Tugwell am 27 Okt. 2020
Create a 2x2 cell array, C which contains the following information:
In element {1,1}, insert the expression below:
my cell
In element {1,2}, insert the array below:
[9 0 3; 2 5 6; 7 81 6]
In element {2,1}, insert the complex number below:
3 + 6i
In element {2,2}, insert the array:
[1 4; 6 7; 11 3]
  3 Kommentare
Liam Bouchereau
Liam Bouchereau am 27 Okt. 2020
AHAHAHAHA just getting ready to fail tomorrow's exam
Cameron Tugwell
Cameron Tugwell am 27 Okt. 2020
Mate aren't we all ahahah

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Mathieu NOE
Mathieu NOE am 27 Okt. 2020
hi
this is quite straitghforward :
C{1,1} = 'my cell';
C{1,2} = [9 0 3; 2 5 6; 7 81 6];
C{2,1} = 3 + 6i;
C{2,2} = [1 4; 6 7; 11 3];
C =
'my cell' [3x3 double]
[3.0000+ 6.0000i] [3x2 double]

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by