Generating correlated data for simulation
1 回表示 (過去 30 日間)
古いコメントを表示
I have a set of values in a 1D array of size N. How to generate another array of slightly greater or lesser size with values that are approximately equal? One can assume that the first array was (subjectively) obtained by a person A from some process and the second by person B from the same process; I have to check how closely they agree. Before I move on with the experiment, I wish to fiddle with the possible cases.
0 件のコメント
回答 (1 件)
Jeff Miller
2023 年 4 月 13 日
One option is to create the second array by adding a random number to each element of the first array. For example
sigma = 1; % increase or decrease to control the size of Array1/2 differences
Array2 = Array1 + normrnd(size(Array1))*sigma;
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!