Mercurial > hg > octave-nkf
annotate scripts/prefs/prefdir.m @ 20818:9d2023d1a63c
binoinv.m: Implement binary search algorithm for 28X performance increase (bug #34363).
* binoinv.m: Call new functions scalar_binoinv or vector_binoinv to calculate
binoinv. If there are still uncalculated values then call bin_search_binoinv
to perform binary search for remaining values. Add more BIST tests.
* binoinv.m (scalar_binoinv): New subfunction to calculate binoinv for scalar x.
Stops when x > 1000.
* binoinv.m (vector_binoinv): New subfunction to calculate binoinv for scalar x.
Stops when x > 1000.
author | Lachlan Andrew <lachlanbis@gmail.com> |
---|---|
date | Sun, 11 Oct 2015 19:49:40 -0700 |
parents | 4b7b7ac7af2c |
children |
rev | line source |
---|---|
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
19790
diff
changeset
|
1 ## Copyright (C) 2013-2015 John Donoghue |
17010
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
2 ## |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
3 ## This file is part of Octave. |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
4 ## |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
5 ## Octave is free software; you can redistribute it and/or modify it |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
6 ## under the terms of the GNU General Public License as published by |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
7 ## the Free Software Foundation; either version 3 of the License, or (at |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
8 ## your option) any later version. |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
9 ## |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
10 ## Octave is distributed in the hope that it will be useful, but |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
13 ## General Public License for more details. |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
14 ## |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
15 ## You should have received a copy of the GNU General Public License |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
16 ## along with Octave; see the file COPYING. If not, see |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
17 ## <http://www.gnu.org/licenses/>. |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
18 |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
19 ## -*- texinfo -*- |
19790
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
17170
diff
changeset
|
20 ## @deftypefn {Command} {} prefdir |
446c46af4b42
strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents:
17170
diff
changeset
|
21 ## @deftypefnx {Command} {@var{dir} =} prefdir |
17017
8003a4f013be
Announce new prefdir, preferences functions and add to manual.
Rik <rik@octave.org>
parents:
17010
diff
changeset
|
22 ## Return the directory that contains the preferences for Octave. |
17010
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
23 ## |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
24 ## Examples: |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
25 ## |
17017
8003a4f013be
Announce new prefdir, preferences functions and add to manual.
Rik <rik@octave.org>
parents:
17010
diff
changeset
|
26 ## Display the preferences directory |
17170
d6499c14021c
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
17020
diff
changeset
|
27 ## |
17010
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
28 ## @example |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
29 ## prefdir |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
30 ## @end example |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
31 ## |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
32 ## Change to the preferences folder |
17170
d6499c14021c
doc: Periodic grammarcheck of documentation.
Rik <rik@octave.org>
parents:
17020
diff
changeset
|
33 ## |
17010
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
34 ## @example |
17017
8003a4f013be
Announce new prefdir, preferences functions and add to manual.
Rik <rik@octave.org>
parents:
17010
diff
changeset
|
35 ## cd (prefdir) |
17010
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
36 ## @end example |
17020
960ac70ac8f3
prefdir.m: Adjust seealso references in docstring.
Rik <rik@octave.org>
parents:
17017
diff
changeset
|
37 ## @seealso{getpref, setpref, addpref, rmpref, ispref} |
17010
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
38 ## @end deftypefn |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
39 |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
40 ## Author: John Donoghue |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
41 ## Version: 0.01 |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
42 |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
43 function folder = prefdir () |
c50ee84842a9
Add preferences and prefdir functions
John Donoghue <john.donoghue@ieee.org>
parents:
diff
changeset
|
44 |
20227
4b7b7ac7af2c
use get_home_directory instead of getenv ("HOME") (bug #44694)
John W. Eaton <jwe@octave.org>
parents:
19898
diff
changeset
|
45 folder = get_home_directory (); |
17017
8003a4f013be
Announce new prefdir, preferences functions and add to manual.
Rik <rik@octave.org>
parents:
17010
diff
changeset
|
46 |
8003a4f013be
Announce new prefdir, preferences functions and add to manual.
Rik <rik@octave.org>
parents:
17010
diff
changeset
|
47 endfunction |
8003a4f013be
Announce new prefdir, preferences functions and add to manual.
Rik <rik@octave.org>
parents:
17010
diff
changeset
|
48 |