0

35x2 の行列 (ランダムワード) があります。ランダムに 8 行 (rndm) を選択しました。私がする必要があるのは、randomwords マトリックスから選択した 8 行を削除し、この新しい 27x2 マトリックスを新しい変数見出しの下に保存することですが、これは非常に難しいと感じています。コードを提供しました。どんな助けでも大歓迎です。

target = words ([30 1 46 14 44 55 8 3 57 65 69 70 57 39 21 60 22 20 16 10 9 17 62 19 25 41 49 53 36 6 42 58 40 56 63]);
synonym = words([43 15 32 28 72 27 48 51 13 67 59 33 35 47 52 61 71 7 23 12 2 66 11 37 4 45 64 38 34 31 29 18 50 68 26]);
% assigns these elements of words into targets and synonyms.  They are
% ordered so that words and synonyms are corresponding elements of
% synonyms and targets


% TO SELECT 8 RANDOM WORDS FOR THE ENCODING PHASE

randomwords = [target; synonym]';   % should be a 35x2 matrix
rndm = datasample(randomwords, 8, 1);    % should select 8 random couples from the rows and none of them will be repeats 
unpaired = rndm(:,2);     % should select only the synonyms to form the unpaired stimuli; will be different for each run
4

1 に答える 1

1

削除された行のインデックスを変数に格納します。たとえば、次のremovedrowsようにします。

result = randomwords;

result(removedrows,:) = [];
于 2012-12-06T19:21:44.763 に答える