Mercurial > hg > ltpda
annotate m-toolbox/classes/+utils/@helper/displayConstructorExamples.m @ 32:e22b091498e4 database-connection-manager
Update makeToolbox
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
rev | line source |
---|---|
0 | 1 |
2 function varargout = displayConstructorExamples(varargin) | |
3 | |
4 % Get the class which we want to display from the input | |
5 cl = varargin{1}; | |
6 | |
7 helpDir = utils.helper.getHelpPath(); | |
8 | |
9 fileName = sprintf('constructor_examples_%s.html#plist', cl); | |
10 file = fullfile(helpDir, 'ug', fileName); | |
11 web(file, '-helpbrowser'); | |
12 | |
13 end |