필터 지우기
필터 지우기

How do I generate links in documentation?

조회 수: 4 (최근 30일)
Tilo Arens
Tilo Arens 2016년 12월 21일
편집: Soumya Saxena 2016년 12월 30일
The Matlab documentation describes how links to properties, methods or event documentation are generated automatically in specific places of the documentation. Is it also possible to generate a link to another class if it is mentioned in the help text?

답변 (1개)

Soumya Saxena
Soumya Saxena 2016년 12월 29일
편집: Soumya Saxena 2016년 12월 30일
I understand that you want to know how you can generate links to the help text for another class from a class. It is possible to use "See also" keyword to create such links.
"See also" creates links by including function or class names at the end of the help text on a line that begins with % See also. If the function or class exists on the search path or in the current folder, the help command displays each of these names as a hyperlink to its help.
For instance, if you have 2 classes, named myClass and myClass2, you may create link to myClass2 from myClass by using %See also. The following is an example:
classdef myClass
% myClass Summary of myClass
% This is the first line of the description of myClass.
% Descriptions can include multiple lines of text.
%
% See also myClass2
%
% myClass Properties:
% a - Description of a
% b - Description of b
%
% myClass Methods:
% doThis - Description of doThis
% doThat - Description of doThat
properties
a
b
end
methods
function obj = myClass
end
function doThis(obj)
end
function doThat(obj)
end
end
end
When you give the command, doc myClass or help myClass, the help for myClass will be visible along with the link to the documentation for myClass2.

카테고리

Help CenterFile Exchange에서 Live Scripts and Functions에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by