How to random a chart?
古いコメントを表示
I am trying to use matlab code to random a word chart. I want to random one line of the chart, not a single word. But I've checked the function like random (line 1: line 15), didn't find an appropiate code. Anyone could help on this? thanks.
2 件のコメント
Mohammad Sami
2020 年 7 月 15 日
Would you be able to clarify your questions ? Perhaps you can give an example of what you are trying to do.
Dorris Yan
2020 年 7 月 15 日
回答 (1 件)
Use random permutations.
Apply this example to your data.
words = ["A" "B" "C" "D" "E" "F" "G" "H"];
randIndex = randperm(numel(words));
words_randomized = words(randIndex);
6 件のコメント
Dorris Yan
2020 年 7 月 20 日
Adam Danz
2020 年 7 月 20 日
No, this is just an example of how to use randperm. You can apply this method to your data.
I don't understand how you'd like to randomize your table. If you can explain it again, I could help you apply this method to your data.
Dorris Yan
2020 年 7 月 21 日
Dorris Yan
2020 年 7 月 22 日
Adam Danz
2020 年 7 月 22 日
It's been a dozen or so years since I've set up an e-prime experiment. I've used cpp to set up and control experiments since there. So, if you're looking for help with e-prime you'll likely need to look elsewhere.
If you're trying to set up the conditions in Matlab, I can help you there but first you'll need to clearly define the specific problem you're tying to solve. For example, I have these variables [...] and am trying to do this specific action with the variables [...].
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
