7017
|
1 ## Copyright (C) 1995, 1996, 1997, 2000, 2005, 2006, 2007 John W. Eaton |
2313
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
7016
|
7 ## the Free Software Foundation; either version 3 of the License, or (at |
|
8 ## your option) any later version. |
2313
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
7016
|
16 ## along with Octave; see the file COPYING. If not, see |
|
17 ## <http://www.gnu.org/licenses/>. |
2303
|
18 |
3416
|
19 ## -*- texinfo -*- |
5610
|
20 ## @deftypefn {Function File} {} setaudio ([@var{w_type} [, @var{value}]]) |
5314
|
21 ## Execute the shell command @samp{mixer [@var{w_type} [, @var{value}]]} |
3416
|
22 ## @end deftypefn |
2311
|
23 |
2312
|
24 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at> |
|
25 ## Created: 5 October 1994 |
|
26 ## Adapted-By: jwe |
|
27 |
1636
|
28 function setaudio (w_type, value) |
2325
|
29 |
1636
|
30 if (nargin == 0) |
|
31 system ("mixer"); |
|
32 elseif (nargin == 1) |
|
33 system (sprintf ("mixer %s", w_type)); |
|
34 elseif (nargin == 2) |
|
35 system (sprintf ("mixer %s %d", w_type, value)); |
|
36 else |
6046
|
37 print_usage (); |
1636
|
38 endif |
2325
|
39 |
1636
|
40 endfunction |