0

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?

Siguza
  • 21,155
  • 6
  • 52
  • 89
cycle cyletic
  • 67
  • 2
  • 10
  • This manual is extremely old, and is no doubt outdated. Is the `bootstrp` command what you're looking for? Try typing `help bootstrp` for more information about it. – GJStein Feb 14 '15 at 07:42
  • 2
    `bootstrp` is in the Statistics toolbox, so you need to make sure you have license for it. – hbaderts Feb 14 '15 at 07:48
  • I try to learn bootstrapt method using matlab. Thank you, "help bootstrp" command looks like enough how I use matlab bootstrapt function. – cycle cyletic Feb 14 '15 at 07:53

1 Answers1

0

Abdelhak M. Zoubir and D. Robert Iskander created once a "BOOTSTRAP MATLAB TOOLBOX", that is a private library for computing bootstraping statistics. This library required Matlab 5.0 and the Statistical Matlab Toolbox of this time. It contained a file called bootrsp.m.

You can read about it and download the file it from here. It may still run.

However nowadays bootstrapping is inbuilt in Matlab (bootstrp), so there is probably no real need anymore to use it.

NoDataDumpNoContribution
  • 10,591
  • 9
  • 64
  • 104