Transfer elements from 1 matrix to another

1 vue (au cours des 30 derniers jours)
Ken
Ken le 1 Déc 2015
I have 2 matrices path one is path which is 6x2 and sample8 which is 3X3. I want to extract an element from sample8 and put it in path as shown below:
path(i,1)=sample8(1,1)
When I do this I get no change in path Please help
  3 commentaires
Ken
Ken le 1 Déc 2015
Modifié(e) : Walter Roberson le 1 Déc 2015
Thanks Geoff. I a pasting my code and matlab output below:
path =
1 1
1 1
1 1
1 1
1 1
1 1
>> sample8
sample8 =
1 1 1
1 1 1
1 1 1
>> path(i,1)=sample8(1,1)
path =
1 1
1 1
1 1
1 1
1 1
1 1
Walter Roberson
Walter Roberson le 1 Déc 2015
You are replacing a 1 with a 1. What output were you expecting?

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 1 Déc 2015
Has i been given a value?
>> path=rand(6,2); sample8=reshape(1:9,3,3)
sample8 =
1 4 7
2 5 8
3 6 9
>> i=2, path, path(i,1) = sample8(1,1)
i =
2
path =
0.999491620097705 0.100221540195492
0.287849344815137 0.178116953886766
0.414522538893108 0.35963491348208
0.464839941625137 0.0567046890682912
0.763957078491957 0.521885673661279
0.818204038907671 0.335848974676925
path =
0.999491620097705 0.100221540195492
1 0.178116953886766
0.414522538893108 0.35963491348208
0.464839941625137 0.0567046890682912
0.763957078491957 0.521885673661279
0.818204038907671 0.335848974676925

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices 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