我一直在学习使用Contents.m添加评论
http://www.mathworks.com/help/matlab/matlab_prog/create-a-help-summary-contents-m.html
我的代码库具有以下层次结构
+foo
Contents.m
+bar
a.m
b.m
Contents.m
+ foo中的Contents.m是
% +FOO
%
% DIRS
% +bar - abcdef
请注意,“内容文件报告”工具会忽略子文件夹。所以我手动添加了行+栏。
+ bar中的Contents.m是
% +BAR qqqq
%
% FILE
% a.m - comments1
% b.m - comments2
当我这样做时
help +foo
我得到了
+FOO
DIRS
+bar - abcdef
这里,+ bar是一个链接。点击它后,我有
+foo
DIRS
+bar - abcdef
+bar qqqq
FILES
a.m - comments1
b.m - comments2
+bar qqqq
FILES
a.m - comments1
b.m - comments2
请注意,“+ bar qqqq”部分会出现两次。如果我做'doc foo'就会发生同样的事情。 'help foo.bar'已经打印了两次bar的内容。
这是因为Contents.m不支持子文件夹吗?如果是这样,我们如何为子文件夹添加注释?