
How to Find What Toolbox a Function is in From Documentation?
3 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Matt J
2022-6-1
See the upper-left corner of the doc page. In this case, it is the Statistics and Machine Learning Toolbox.

6 个评论
Steven Lord
2022-6-1
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:
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
2022-6-1
Because it is a class method, MATLAB would not be able to see it at all for other inputs.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!