Contents     Functions         Previous Next     PDF Index

sdtweb

Purpose

SDT file navigation function.

Description

This function allows opening the SDT documentation, opening classical file types outside Matlab, and source code navigation.

_taglist

Opens the TagList navigator. This navigator opens a tree providing links to source code functions following the SDT code formatting.

One can open the TagList of the current opened file in the editor, typing

sdtweb _taglist

or specify a function for _taglist to open, typing

sdtweb _taglist feutil

The code typing convention are

function out=my_fun(varargin)
...
%% #Command -------------------------------------------------
if comstr(Cam,'command'); [CAM,Cam]=comstr(Cam,8);
%% #CommandSub - - - - - - - - - - - - - - - - - - - - - - - 
if comstr(Cam,'sub');
...
end
end
...
end % function
%% #SubFunc -------------------------------------------------
%% #my_sub_fun - - ------------------------------------------
function out=my_sub_fun(input)
end
%% #my_sub_fun_2 - - ----------------------------------------
function out=my_sub_fun_2(input)
end

[function_name]

Opens a function documentation.

E.g. to open the feutildocumentation, one can type

sdtweb _taglist feutil

©1991-2012 by SDTools
Previous Up Next