blob: 5e56d620c29ce0d027834dfc28400ea590fdb0af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011 - DIGITEO - Sylvestre Ledru
//
// This file is released under the 3-clause BSD license. See COPYING-BSD.
function subdemolist = demo_gateway()
demopath = get_absolute_file_path("hdf5.dem.gateway.sce");
add_demo(gettext("HDF5"), demopath + "hdf5.dem.gateway.sce");
subdemolist = [_("Ring resonator (HDF5 data source)") ,"resonator.dem.sce" ]
subdemolist(:,2) = demopath + subdemolist(:,2);
endfunction
subdemolist = demo_gateway();
clear demo_gateway;
|