How to randomize order of functions
1 次查看(过去 30 天)
显示 更早的评论
I have a function that calls a number of sub-functions. Each of these sub-functions is a test with slight differences but the same basic purpose and a single output. A basic example is given below. What I need to do is have the 4 test functions run in a randomized order each time. I am unsure how to go about it. Any help is much appreciated. Thank you.
function [results] = runTests(testparamters)
result1 = test1(testparameters);
result2 = test2(testparameters);
result3 = test3(testparameters);
result4 = test4(testparameters);
results = [result1 result2 result3 result4];
end
2 个评论
Dyuman Joshi
2023-4-26
"What I need to do is have the 4 test functions run in a randomized order each time."
But that wouldn't change the final output of runTests().
Do you want to get the results array with random combination of the result1, result2, result3 and result4 ? (As @Matt has shown below) If this is not what you want, please specify.
采纳的回答
James Tursa
2023-4-26
编辑:James Tursa
2023-4-27
E.g., Using the cell array approach with randperm:
function [results] = runTests(testparameters)
f = {@test1,@test2,@test3,@test4};
ix = randperm(4);
result1 = f{ix(1)}(testparameters);
result2 = f{ix(2)}(testparameters);
result3 = f{ix(3)}(testparameters);
result4 = f{ix(4)}(testparameters);
results = [result1 result2 result3 result4];
end
If the results are scalars, then this could be shortened to:
function [results] = runTests(testparameters)
f = {@test1,@test2,@test3,@test4};
results = arrayfun(@(x)f{x}(testparameters),randperm(4));
end
And given that this function is now essentially a one-liner, you might just skip the function runTests altogether and simply include that results line in your calling code directly.
That all being said, if there is learning involved from one call to the next (i.e., the test functions are not independent), then you might not want to use the one-liner approach since you cannot assume arrayfun( ) is guaranteed to call the functions in a particular order. In that case, use the explicit order calling code instead (or use an explicit loop).
更多回答(1 个)
Matt
2023-4-26
Hi,
By curiosity in what context do you need to do something like this ?
You can store the functions handles in a cell and call randomly the cells element like this :
x = 1;
N_fun = 3;
[~,random_index] = sort(rand(1,N_fun));
fun_list = {@f1,@f2,@f3};
results = nan(1,N_fun);
for ii=1:N_fun
results(ii)=fun_list{random_index(ii)}(x);
end
results
function y =f1(x)
y = 1;
end
function y =f2(x)
y = 2;
end
function y =f3(x)
y = 3;
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Hypothesis Tests 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!