A = [1 2 3]
B = [-1 1 3]
C = [5 6 7]
if A, B, C are matrices with these values and X = [A'B'C'] then
What is 'X' ??

 Réponse acceptée

madhan ravi
madhan ravi le 4 Sep 2019
Modifié(e) : madhan ravi le 4 Sep 2019

0 votes

Why not try it in command window??
A,B and C are turned into column vectors and are horizantally concatenated with each other.
Note: always use nonconjugate transpose instead of conjugate transpose.
>> A = [1 2 3]
B = [-1 1 3]
C = [5 6 7]
A =
1 2 3
B =
-1 1 3
C =
5 6 7
>> X = [A' B' C']
X =
1 -1 5
2 1 6
3 3 7
>>

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by