Reputation: 1317
Example: If I write plotR in command window and hit Tab I get "No Completions Found". Statistics Toolbox has a function called plotResiduals which should pop up. How do I enable tab completion for the Statistics Toolbox?
Upvotes: 0
Views: 52
Reputation: 8477
plotResiduals
is not a function, but a method in the class LinearModel
. So when you have an object x
of that class and you type x.plotR
and then hit Tab, the completion occurs (without pop-up, because there's only one possibility).
Upvotes: 2