Clear Filters
Clear Filters

How to Find What Toolbox a Function is in From Documentation?

17 views (last 30 days)
Hi,
I hope the answer to this isn't staring me in the face...but I'm trying to use the 'addTerms' function
and I cannot figure out from the documentation what toolbox I need to download in order to use it.
I already have the 'Statistics and Machine Learning Toolbox' version 12.3. However, my MATLAB install is not recognizing the 'addTerms.m' function.
Thanks for your consideration,
tom

Accepted Answer

Matt J
Matt J on 1 Jun 2022
See the upper-left corner of the doc page. In this case, it is the Statistics and Machine Learning Toolbox.
  6 Comments
Steven Lord
Steven Lord on 1 Jun 2022
Walter is correct. You can see this by scrolling down to the Input Arguments section on that documentation page, which lists as the description of the mdl input argument:
"Linear regression model, specified as a LinearModel object created using fitlm or stepwiselm."
If you tried to call addTerms with something that's not a LinearModel object as the first input, that doesn't satisfy the requirements of the function and so MATLAB throws an error.
Walter Roberson
Walter Roberson on 1 Jun 2022
Because it is a class method, MATLAB would not be able to see it at all for other inputs.

Sign in to comment.

More Answers (0)

Tags

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!