I try to execute a simple matlab bootstrapt example from taken this guide. The guide says that
>> x=1:5;
>> out=bootrsp(x,10)
out = 2 5 5 5 2 3 2 3 4 1
5 5 3 4 1 5 4 1 1 5
5 3 1 3 1 5 3 5 3 1
1 4 5 3 3 2 5 3 5 4
3 3 5 3 5 1 5 3 5
When I run this command on command window, I get an error via Undefined function or method 'bootrsp' for input arguments of type 'double'.
How can I add/load it?