How can I have lookfor show help for files within packages?
1 次查看(过去 30 天)
显示 更早的评论
Hi -
Over the last few years, I've started writing most of my Matlab code in packages. However, I don't seem to be able to search the help of these functions with lookfor, even if those functions are on the Matlab path.
Example: suppose a I have a package file:
+mypackage/mymfile.m
function y = mymfile(x)
% MYMFILE - performs a computation
%
% Y = MYMFILE(X)
%
% Returns the square of X.
%
y = x.^2;
If I type
lookfor computation
on the command line, mymfile is not found. How can I tell lookfor to search through my packages?
The behavior I expect is that it would return
mypackage.mymfile - performs a computation
(and the other matches on my workspace)
Thanks
Steve
0 个评论
回答(1 个)
Anshika Chourasia
2021-12-29
Hi Steve,
I understand you would like to search within packages when using "lookfor". This feature is not currently available.
As an alternative, you can use the Function Browser. This is the "fx" button located just to the left of the prompt in the Command Window. You may also be able to do this using the “builddocsearchdb” function.
4 个评论
Anshika Chourasia
2022-1-7
Yes, you may be right. Our development team might consider this issue, till that time you can utilize alternative functionalities avaliable.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!