Skip to content

Commit cde0fb9

Browse files
committed
fixed issue with doc_OST
1 parent b7066ba commit cde0fb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

INSTALL/ODE Solver Toolbox.mltbx

2 Bytes
Binary file not shown.

toolbox/doc/doc_OST.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ function doc_OST(name)
2424

2525
% opens index if no function name specified
2626
if nargin == 0
27-
web('html/index.html');
27+
web('html_OST/index.html');
2828

2929
% opens technical documentation
3030
elseif strcmpi(name,'tech')
3131
open('Fixed_Step_ODE_Solvers.pdf');
3232

3333
% opens specified function documentation
3434
else
35-
web(strcat('html/',name,'_doc.html'));
35+
web(strcat('html_OST/',name,'_doc.html'));
3636

3737
end
3838
end

0 commit comments

Comments
 (0)