How can I slove the maxtric

2 vues (au cours des 30 derniers jours)
Tran David
Tran David le 17 Fév 2021
Commenté : Tran David le 17 Fév 2021
HI all, I'm not understanding how the code computes a C matrix . pls help me
i am a newbie...
A=[2;0;0;0;1]
B=[5;1;4;1]
C=A(B,1)
---> C=[ 1;2;0;2]

Réponses (2)

John D'Errico
John D'Errico le 17 Fév 2021
You want to slove a matrix? Sorry. Valentines day was 3 days ago. Too late for s"love".
A is a column vector, composed of the elements [2 0 0 0 1].
B is a vector, used to index into the matrix (or vector) A.
What is the 5th element of A? Hint: Matlab uses a 1 based index system. So the 5th element of A is 1. Likewise, the 1st element of A is 1, etc.
  1 commentaire
Tran David
Tran David le 17 Fév 2021
<3 thanks for your help.

Connectez-vous pour commenter.


David Hill
David Hill le 17 Fév 2021
C is produced from indexing the values of B into A.
A(5)=1;A(1)=2;A(4)=0;A(1)=2;
C=A(B);%don't need the 1
  1 commentaire
Tran David
Tran David le 17 Fév 2021
I’m extremely grateful for you

Connectez-vous pour commenter.

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by