How to choose values ​​in the second and third column corresponding to the drawn numbers?

2 vues (au cours des 30 derniers jours)
%N X Y
AA=[ 1 0 4
2 1 5
21 4 6
81 3 7
92 7 8
73 6 4
65 3 3
36 5 4
16 6 5
6 7 4]
A=AA(:,1);
disp(A);
b=(A(randperm(size(A,1),3),1))
disp(b);
% How to choose values ​​in the second and third column corresponding to the drawn numbers?
for i=1:3 %This solution give me error - Index in position 1 exceeds array bounds (must not exceed 10).
c=b(i,1);
disp(AA(c,2));
disp(AA(c,3));
end

Réponse acceptée

Arunkumar M
Arunkumar M le 17 Nov 2018
Modifié(e) : madhan ravi le 17 Nov 2018
Error occurs because with c you are finding the element which is a part of first column in AA. But this element is not the index. So you have to find the index where it is located and then pull out second and third column values.
for i=1:3
c=b(i,1);
temp1 = find(A == c);
temp2 = temp1(1,1); % in case multiple values are returned in temp1.
disp(AA(temp2,2));
disp(AA(temp2,3));
end
  2 commentaires
hawk5577
hawk5577 le 17 Nov 2018
Error:
Index in position 1 exceeds array bounds.
Error in smiec4 (line 22)
temp2 = temp1(1,1); % in case multiple values are returned in temp1.

Connectez-vous pour commenter.

Plus de réponses (1)

Bruno Luong
Bruno Luong le 17 Nov 2018
Why make so complicated? RANDPERM returns the position, store and use it rather than trying to recover it.
AA=[ 1 0 4
2 1 5
21 4 6
81 3 7
92 7 8
73 6 4
65 3 3
36 5 4
16 6 5
6 7 4]
p = randperm(size(A,1),3);
b = AA(p,1)
AA(p,:)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by