Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 stimlui 的 35x2 矩阵,用于单词记忆实验。每次运行我的程序时,我都需要随机抽取 16 个单元格,以便实验总是不同的。我已经设法使用 datasample() 创建一个 8x2 矩阵来做到这一点,但是我需要将它们从 35x2 中删除,以确保它们不会在两次试验的第二次中被重新选择。当单元格坐标已知时,我知道如何删除单元格;但不是每次随机选择它们时。任何建议将不胜感激。
谢谢
凯利
Datasample返回它选择的索引。考虑这个
Datasample
m = rand(35,2); % // test matrix [s i ] = datasample(m,8,1); % // s are the samples, i are their indices m(i,:) = []; % // elimination of selected samples