annotate COPYRIGHT.md @ 27918:b442ec6dda5c

use centralized file for copyright info for individual contributors * COPYRIGHT.md: New file. * In most other files, use "Copyright (C) YYYY-YYYY The Octave Project Developers" instead of tracking individual names in separate source files. The motivation is to reduce the effort required to update the notices each year. Until now, the Octave source files contained copyright notices that list individual contributors. I adopted these file-scope copyright notices because that is what everyone was doing 30 years ago in the days before distributed version control systems. But now, with many contributors and modern version control systems, having these file-scope copyright notices causes trouble when we update copyright years or refactor code. Over time, the file-scope copyright notices may become outdated as new contributions are made or code is moved from one file to another. Sometimes people contribute significant patches but do not add a line claiming copyright. Other times, people add a copyright notice for their contribution but then a later refactoring moves part or all of their contribution to another file and the notice is not moved with the code. As a practical matter, moving such notices is difficult -- determining what parts are due to a particular contributor requires a time-consuming search through the project history. Even managing the yearly update of copyright years is problematic. We have some contributors who are no longer living. Should we update the copyright dates for their contributions when we release new versions? Probably not, but we do still want to claim copyright for the project as a whole. To minimize the difficulty of maintaining the copyright notices, I would like to change Octave's sources to use what is described here: https://softwarefreedom.org/resources/2012/ManagingCopyrightInformation.html in the section "Maintaining centralized copyright notices": The centralized notice approach consolidates all copyright notices in a single location, usually a top-level file. This file should contain all of the copyright notices provided project contributors, unless the contribution was clearly insignificant. It may also credit -- without a copyright notice -- anyone who helped with the project but did not contribute code or other copyrighted material. This approach captures less information about contributions within individual files, recognizing that the DVCS is better equipped to record those details. As we mentioned before, it does have one disadvantage as compared to the file-scope approach: if a single file is separated from the distribution, the recipient won't see the contributors' copyright notices. But this can be easily remedied by including a single copyright notice in each file's header, pointing to the top-level file: Copyright YYYY-YYYY The Octave Project Developers See the COPYRIGHT file at the top-level directory of this distribution or at https://octave.org/COPYRIGHT.html. followed by the usual GPL copyright statement. For more background, see the discussion here: https://lists.gnu.org/archive/html/octave-maintainers/2020-01/msg00009.html Most files in the following directories have been skipped intentinally in this changeset: doc libgui/qterminal liboctave/external m4
author John W. Eaton <jwe@octave.org>
date Mon, 06 Jan 2020 15:38:17 -0500
parents
children a7c8d2d72120
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27918
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 Octave is free software: you can redistribute it and/or modify it
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 under the terms of the GNU General Public License as published by
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 the Free Software Foundation, either version 3 of the License, or
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 (at your option) any later version.
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is distributed in the hope that it will be useful, but
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 WITHOUT ANY WARRANTY; without even the implied warranty of
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 GNU General Public License for more details.
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 You should have received a copy of the GNU General Public License
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 along with Octave; see the file COPYING. If not, see
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 <https://www.gnu.org/licenses/>.
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 Copyright:
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 1987-1988, 1991-1997, 2003-2018 Free Software Foundation
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 1992-2020 John W. Eaton
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 1993 Fook Fah Yap
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 1993 Friedrich Leisch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 1993 Gerhard Kircher
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 1993 John C. Campbell
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 1993 Per Bothner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 1993 R. Bruce Tenison
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 1993 Teresa Twaroch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 1993, 1995 Auburn University
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 1993, 1995, 1998-2002, 2004, 2006-2007 A. Scottedward Hodel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 1993, 1996-1999, 2001-2002, 2005-2006 Kurt Hornik
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 1993-1997 O. Weber
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 1993-1998 Karl Berry
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 1994 Castor Fu
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 1994 Mark Odegard
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 1994 Romolo Manfredini
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 1994, 2009 Anthony Richardson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 1994-1995 David Clem
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 1994-1997 Frederick (Rick) A Niles
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39 1995 Paul Eggert
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 1995 Thomas Baier
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 1995 Vinayak Dutt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 1995, 1997 Klaus Gebhardt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 1997 Ram'on Garc'ia Fern'andez
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 1997 Rex A. Dieter
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 1997, 1999-2000, 2008 Rolf Fabian
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 1997-1999, 2001-2003 Mumit Khan
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 1998 Eric Norum
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 1998 Philippe.Defert@cern.ch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 1998 Richard Allan Holcombe
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 1998 Roman Hodek
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 1998 Tomislav Goles
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 1998, 2000 Georg Thimm
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 1998, 2000 John Smith
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 1998-2000, 2002-2006, 2012 Andy Adler
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 1999 Daniel Calvelo
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56 1999 Eduardo Gallestey
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 1999 Geoff Jacobsen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 1999 James B. Rawlings
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
59 1999 James Macnicol
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
60 1999 Massimo Lorenzin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61 1999-2000 Joao Cardoso
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
62 1999-2000 Stephen Eglen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63 1999-2002 Ben Sapp
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
64 2000 Joerg Specht
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
65 2000 Marcus Brinkmann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
66 2000 Michael Reifenberger
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
67 2000 Thomas Walter
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 2000, 2002, 2012 Steven G. Johnson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
69 2000, 2002-2004 Teemu Ikonen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70 2000, 2003 Cyril Humbert
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
71 2000, 2003, 2005 Mats Jansson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
72 2000, 2003, 2007-2008 Gabriele Pannocchia
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 2000, 2004, 2006 Etienne Grossmann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74 2000, 2005 James R. Van Zandt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75 2000-2001 Matthew W. Roberts
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 2000-2002 Cai Jianming
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
77 2000-2002, 2007-2011 Kai Habel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
78 2000-2007 Paul Kienzle
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 2001 Albert Chin-A-Young
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
80 2001 Christoph Spiel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 2001 David Livings
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 2001 Heinz Bauschke
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
83 2001 Ondrej Popp
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
84 2001 Ross Lippert
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
85 2001 Thomas Stuart
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
86 2001, 2005-2009, 2012-2016 Rafael Laboissiere
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
87 2001, 2007 Jean-Francois Cardoso
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
88 2001-2003 Python Software Foundation
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
89 2002 David Billinghurst
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
90 2002 Dirk Laurie
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
91 2002 JD Cole
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
92 2002 Jeff Cunningham
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
93 2002 Matt Tenny
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
94 2002 Nicholas Piper
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
95 2002 Nix
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
96 2002 Peter Van Wieren
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
97 2002, 2006-2009 Francesco Potortì
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
98 2002, 2017 Andreas Stahel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
99 2002, 2017 Bill Lash
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
100 2002-2003 Dirk Eddelbuettel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
101 2002-2003, 2007 Joseph P. Skudlarek
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
102 2002-2004 Per Persson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
103 2003 Aaron A. King
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
104 2003 Danilo Piazzalunga
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
105 2003 David Castelow
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
106 2003 Duncan Temple Lang
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
107 2003 Eric S. Raymond
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
108 2003 Heine Kolltveit
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
109 2003 Lute Kamstra
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
110 2003 Melqart
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
111 2003 Richard Stallman
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
112 2003 Roger Banks
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
113 2003 Russell Standish
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
114 2003 Stefan Monnier
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
115 2003 Thorsten Ohl
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
116 2003, 2005 Arno J. Klaassen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
117 2003, 2008, 2010-2011 Alois Schlögl
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
118 2003, 2008-2010, 2012, 2014-2015, 2018-2019 Doug Stewart
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
119 2003-2004 Al Niessner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
120 2003-2004 Petter Risholm
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
121 2003-2007 Quentin H. Spencer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
122 2003-2013, 2015 David Bateman
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
123 2004 Balint Reczey
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
124 2004 Claude Lacoursiere
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
125 2004 David Hoover
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
126 2004 Federico Zenith
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
127 2004 Fredrik Lingvall
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
128 2004 Glenn Golden
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
129 2004 Hans Ekkehard Plesser
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
130 2004 Heikki Junes
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
131 2004 Jakub Bogusz
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
132 2004 Martin Dalecki
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
133 2004 Oyvind Kristiansen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
134 2004 Volker Kuhlmann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
135 2004, 2007-2010 Shai Ayal
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
136 2004, 2011, 2015, 2018 Orion Poplawski
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
137 2004-2005 Stefan van der Walt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
138 2004-2006 Keith Goodman
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
139 2004-2006, 2008, 2010-2012 Pascal A. Dupuis
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
140 2005 Antoine Moreau
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
141 2005 Benjamin Hall
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
142 2005 Clinton Chee
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
143 2005 Daniel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
144 2005 Driss Ghaddab
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
145 2005 Erik de Castro Lopo
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
146 2005 Ivana Varekova
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
147 2005 Joel Andersson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
148 2005 Julius Smith
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
149 2005 Kevin Ruland
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
150 2005 Ludwig Schwardt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
151 2005 Miroslaw Kwasniak
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
152 2005 Mohamed Kamoun
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
153 2005 Nicolo' Giorgetti
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
154 2005 Orestes Mas
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
155 2005 Shan G. Smith
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
156 2005 Todd Neal
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
157 2005 Tom Holroyd
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
158 2005 Toni Saarela
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
159 2005 Walter Landry
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
160 2005 cctsim
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
161 2005, 2007 Michael Zeising
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
162 2005, 2007-2009, 2012-2018 Daniel J. Sebald
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
163 2005, 2010 Ben Barrowes
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
164 2005-2006 Jorge Barros de Abreu
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
165 2005-2006 William Poetra Yoga Hadisoeseno
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
166 2005-2006, 2008, 2012 Dmitri A. Sergatskov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
167 2005-2008 Bill Denney
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
168 2005-2010 Søren Hauberg
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
169 2006 Atsushi Kajita
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
170 2006 Christopher Hulbert
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
171 2006 Don Bindner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
172 2006 Geoffrey Knauth
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
173 2006 Henry Mollet mollet@pacbell.net
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
174 2006 Jim Peterson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
175 2006 Kai Labusch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
176 2006 Ken Kouno
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
177 2006 Larrie Carr
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
178 2006 Martin Costabel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
179 2006 Stephen Fegan
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
180 2006 Yozo Hida
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
181 2006, 2011 Michael Creel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
182 2006-2007 Arno Onken
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
183 2006-2007 Bob Weigel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
184 2006-2007 Luis F. Ortiz
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
185 2006-2007, 2009 Olli Saarela
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
186 2006-2008 Juhani Saastamoinen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
187 2006-2008, 2010 Kim Hansen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
188 2006-2009 Alexander Barth
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
189 2006-2009 Thomas Treichl
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
190 2006-2009, 2011 Benjamin Lindner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
191 2006-2011 Thomas Weber
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
192 2006-2015 Michael Goffioul
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
193 2007 Alex Zvoleff
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
194 2007 Alexander Klimov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
195 2007 Aquil H. Abdullah
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
196 2007 Baylis Shanks
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
197 2007 Christian Cornelssen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
198 2007 Christof Zeile
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
199 2007 Christoph Mayer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
200 2007 Claudio Belotti
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
201 2007 D. Martin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
202 2007 Donald Parsons
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
203 2007 Geordie McBain
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
204 2007 Jim Langston
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
205 2007 Kristan Onu
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
206 2007 Laurent Mazet
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
207 2007 Luther Tychonievich
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
208 2007 Marcus W. Reble
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
209 2007 Matthias Drochner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
210 2007 Michael Weitzel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
211 2007 Moritz Borgmann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
212 2007 Peter A. Gustafson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
213 2007 Sebastian Schubert
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
214 2007 Steve M. Robbins
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
215 2007 Steven Mestdagh
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
216 2007 Tarmigan Casebolt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
217 2007 Thomas Kasper
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
218 2007 Ulrich Tipp
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
219 2007 Utkarsh Upadhyay
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
220 2007 Vittoria Rezzonico
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
221 2007 Zhi Wang
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
222 2007, 2009 Joel Keay
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
223 2007, 2009-2015, 2017-2018 Olaf Till
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
224 2007-2008 Muthiah Annamalai
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
225 2007-2009 Brian Gough
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
226 2007-2009 Jason Riedy
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
227 2007-2013, 2015-2019 Marco Caliari
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
228 2007-2013, 2018 John P. Swensen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
229 2007-2016, 2018-2019 Carlo de Falco
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
230 2007-2016, 2019 Ben Abbott
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
231 2008 Emil Lucretiu
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
232 2008 G. (Gert) van Antwerpen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
233 2008 James Packer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
234 2008 Jarkko Kaleva
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
235 2008 Jonathan Stickel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
236 2008 Julian Schnidder
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
237 2008 Julien Pommier
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
238 2008 Krzesimir Nowak
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
239 2008 Maciek Gajewski
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
240 2008 Mark van Rossum
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
241 2008 Martin Weiser
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
242 2008 Primozz Peterlin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
243 2008 Richard Bovey
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
244 2008 Ryan Hinton
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
245 2008 Sebastien Loisel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
246 2008 Tetsuro KURITA
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
247 2008 Thomas L. Scofield
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
248 2008 Timo Lindfors
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
249 2008, 2010 Brett Stewart
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
250 2008, 2010-2012 Konstantinos Poulios
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
251 2008, 2011, 2013-2019 Andreas Weber
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
252 2008, 2011-2012 Kris Thielemans
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
253 2008, 2018 Dave Goel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
254 2008-2009 Ivan Sutoris
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
255 2008-2009 Radek Salac
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
256 2008-2010 Ryan Rusaw
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
257 2008-2010 VZLU Prague
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
258 2008-2011 Jaroslav Hajek
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
259 2008-2011 Thorsten Meyer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
260 2008-2011, 2015-2016, 2018-2019 Tatsuro Matsuoka
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
261 2008-2013, 2018 Marco Atzeri
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
262 2008-2015, 2017 Michael D. Godfrey
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
263 2009 Aleksej Saushev
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
264 2009 Alexander Mamonov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
265 2009 Ansgar Burchardt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
266 2009 Aravindh Krishnamoorthy
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
267 2009 Bernard Desgraups
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
268 2009 Bertrand Roessli
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
269 2009 Carmine Paolino
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
270 2009 Carsten Clark
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
271 2009 Christophe Tournery
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
272 2009 Daniel Gualberto
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
273 2009 E. Joshua Rigler
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
274 2009 Eric Chassande-Mottin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
275 2009 Frederick Umminger
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
276 2009 Joe Rothweiler
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
277 2009 Kacper Kowalik
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
278 2009 Kai NODA
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
279 2009 Kristian Rumberg
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
280 2009 Nokia Corporation and/or its subsidiary(-ies).
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
281 2009 Peter L. Søndergaard
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
282 2009 Peter O'Gorman
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
283 2009 Pieter Eendebak
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
284 2009 Rob Mahurin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
285 2009 Robert Millan
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
286 2009 Stefan Hepp
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
287 2009 Steffen Groot
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
288 2009 Steven Verstoep
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
289 2009 Thomas D. Dean
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
290 2009, 2011 Lukas Reichlin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
291 2009, 2011-2012 Robert T. Short
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
292 2009-2010, 2012 Martin Helm
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
293 2009-2011 David Grundberg
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
294 2009-2011 Petr Mikulik
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
295 2009-2020 Rik Wehbring
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
296 2010 Brad Froehle
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
297 2010 Christos Dimitrakakis
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
298 2010 Daisuke TAKAGO
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
299 2010 David Gesswein
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
300 2010 Gunnar Farnebäck
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
301 2010 Joshua Redstone
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
302 2010 Judd Storrs
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
303 2010 Jyh-Miin Lin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
304 2010 Liam Groener
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
305 2010 Marc Vinyals
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
306 2010 Pedro Gonnet
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
307 2010 Peter van den Biggelaar
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
308 2010 Qianqian Fang
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
309 2010-2012 Iain Murray
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
310 2010-2017 Jordi Gutiérrez Hermoso
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
311 2011 Alexander Klein
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
312 2011 Andriy Shinkarchuck
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
313 2011 Andy Buckle
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
314 2011 David Finkel david.finkel@gmail.com
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
315 2011 David Wells
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
316 2011 Fabian Deutsch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
317 2011 Giles Anderson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
318 2011 Hannes Müller
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
319 2011 John Bradshaw
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
320 2011 Karsten Trulsen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
321 2011 Matthias Jüschke
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
322 2011 Patrick Häcker
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
323 2011 Paul Boven
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
324 2011 Richard Campbell
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
325 2011 Roman Belov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
326 2011 Sean Young
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
327 2011 Vanya Sergeev
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
328 2011-2012 Fotios Kasolis
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
329 2011-2012 Jacob Dawid
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
330 2011-2012 Jarno Rajahalme
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
331 2011-2012 John Hunt
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
332 2011-2012, 2014, 2016 Daniel Kraft
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
333 2011-2013 Júlio Hoffimann Mendes
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
334 2011-2018 Carnë Draug
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
335 2011-2019 Philip Nienhuis
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
336 2011-2020 Torsten Lilge
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
337 2012 Alexander Graf
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
338 2012 Alexander Hansen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
339 2012 Corbin Champion
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
340 2012 Elias Pipping
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
341 2012 Fabio Rossi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
342 2012 Garrett G Euler
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
343 2012 Israel Herraiz
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
344 2012 Jen Stewart
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
345 2012 Melvin Robinson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
346 2012 Miguel Bazdresch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
347 2012 Nicholas Musolino
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
348 2012 Ronald van der Meer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
349 2012 Ryan Starret
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
350 2012 Sergey Dudoladov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
351 2012 Stefan Husmann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
352 2012 Sunghyun Cho
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
353 2012 Vivek Dogra
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
354 2012, 2014-2019 Colin Macdonald
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
355 2012-2013 Axel Mathéi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
356 2012-2013 Ed Meyer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
357 2012-2013 Erik Kjellson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
358 2012-2013 Max Brister
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
359 2012-2013 Muhali
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
360 2012-2013 Richard Crozier
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
361 2012-2013 Thorsten Liebig
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
362 2012-2016, 2018-2019 Juan Pablo Carbajal
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
363 2012-2019 Pantxo Diribarne
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
364 2012-2020 Mike Miller
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
365 2013 Adam H Aitkenhead
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
366 2013 Amod Mulay
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
367 2013 Andre da Costa Barros
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
368 2013 Andy Register
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
369 2013 Artem Krosheninnikov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
370 2013 Arun Giridhar
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
371 2013 Ben Kurtz
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
372 2013 Carl Osterwisch
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
373 2013 Catalin Codreanu
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
374 2013 Clemens Buchacher
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
375 2013 Corey Thomasson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
376 2013 Craig Hudson
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
377 2013 David Turner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
378 2013 FZI Forschungszentrum Informatik Karlsruhe
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
379 2013 Falk Tannhäuser
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
380 2013 Janne Olavi Paanajärvi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
381 2013 Jens Restemeier
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
382 2013 Leopoldo Cerbaro
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
383 2013 Marco Cecchetti
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
384 2013 Patrick Noffke
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
385 2013 Risto Vanhanen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
386 2013 Rüdiger Sonderfeld
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
387 2013 Serhiy Zahoriya
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
388 2013 Vytautas Jančauskas
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
389 2013, 2015-2019 Sébastien Villemot
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
390 2013, 2016 Sander van Rijn
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
391 2013, 2018 Valentin Ortega
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
392 2013-2014 Kyle Guinn
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
393 2013-2014 LYH
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
394 2013-2014 Markus Appel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
395 2013-2014 Mike Sander
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
396 2013-2014 Philipp Kutin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
397 2013-2014 PrasannaKumar Muralidharan
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
398 2013-2014, 2016-2017 Nir Krakauer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
399 2013-2014, 2016-2019 Julien Bect
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
400 2013-2015 Stefan Mahr
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
401 2013-2015, 2018 Felipe G. Nievinski
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
402 2013-2019 Kai T. Ohlhus
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
403 2013-2020 John Donoghue
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
404 2014 Ahsan Ali Shahid
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
405 2014 Branden Archer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
406 2014 Colin Foster
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
407 2014 David Spies
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
408 2014 Drew Abbot
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
409 2014 Edmund Grimley Evans
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
410 2014 Eduardo Ramos Fernández
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
411 2014 Endre Kozma
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
412 2014 Jason Alan Palmer
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
413 2014 Joachim Wiesemann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
414 2014 Johannes Zarl
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
415 2014 José Vallet
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
416 2014 Lasse Schuirmann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
417 2014 Marco Vitetta
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
418 2014 Marko Seric
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
419 2014 Markus Bergholz
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
420 2014 Nathan Podlich
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
421 2014 Pedro Angelo
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
422 2014 Pooja Rao
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
423 2014 Rolando Pereira
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
424 2014 Sergey Plotnikov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
425 2014 Serviscope Minor
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
426 2014 Stefan Beller
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
427 2014 Vaibhav Gupta
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
428 2014 Willem Atsma
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
429 2014, 2019 Michael C. Grant
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
430 2014-2015 Allan Jacobs
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
431 2014-2016 Eugenio Gianniti
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
432 2014-2016 Stefan Miereis
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
433 2014-2016, 2018 Massimiliano Fasi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
434 2015 Akira Noda
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
435 2015 Amro
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
436 2015 Armin Müller
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
437 2015 Bernardo Sulzbach
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
438 2015 Cillian O'Driscoll
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
439 2015 Claudius Zingerli
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
440 2015 Ederag
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
441 2015 Ethan Biery
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
442 2015 Ilya Kurdyukov
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
443 2015 Johannes Leuschner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
444 2015 Ken Marek
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
445 2015 Michele Zaffalon
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
446 2015 Rafael Monteiro
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
447 2015 Sahil Badyal
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
448 2015 Yu Liu
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
449 2015, 2017 Michael Barnes
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
450 2015, 2017 Piotr Held
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
451 2015-2016 Dmitry Roshchin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
452 2015-2016 Jacapo Corno
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
453 2015-2016 José Luis García Pallero
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
454 2015-2016 Oliver Heimlich
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
455 2015-2016, 2018 Sebastian Schöps
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
456 2015-2016, 2019 Hartmut Gimpel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
457 2015-2017 Avinoam Kalma
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
458 2015-2017 Lachlan Andrew
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
459 2015-2019 Nicholas R. Jankowski
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
460 2016 Abhinav Tripathi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
461 2016 Andrew Thornton
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
462 2016 Atri Bhattacharya
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
463 2016 Barbara Lócsi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
464 2016 Damjan Angelovski
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
465 2016 Francesco Faccio
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
466 2016 Garrett Euler
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
467 2016 Joakim Andén
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
468 2016 NVS Abhilash
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
469 2016 Robert Jenssen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
470 2016 Stephen Montgomery-Smith
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
471 2016-2017 Ernst Reissner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
472 2016-2019 Lars Kindermann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
473 2016-2019 Markus Mützel
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
474 2017 Brad Kennedy
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
475 2017 Georg Wiora
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
476 2017 Hugo Raguet
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
477 2017 Lasse Kliemann
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
478 2017 Richard Zweig
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
479 2017 Tejaswi D Prakash
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
480 2017 Victor Norton
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
481 2017-2019 Alexander Wilms
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
482 2017-2019 Guillaume Flandin
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
483 2017-2019 Michael Leitner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
484 2017-2019 Michele Ginesi
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
485 2017-2019 Sahil Yadav
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
486 2018 Avlas
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
487 2018 Cristiano Dorigo
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
488 2018 Dildar Sk
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
489 2018 Gene Harvey
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
490 2018 Joe Winegarden
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
491 2018 Maor Shutman
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
492 2018 Ronny Standtke
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
493 2018 Stefan Schlögl
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
494 2018 Stevie Schraudner
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
495 2018-2019 A.R. Burgers
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
496 2018-2019 Andrew Janke
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
497 2018-2019 Jun Wang
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
498 2019 Anthony Morast
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
499 2019 Bill Greene
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
500 2019 Christian Himpe
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
501 2019 Daniel Davis
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
502 2019 Eddy Xiao
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
503 2019 Juho Iipponen
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
504 2019 Nguy?n Gia Phong
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
505 2019 Tomi Pannila
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
506 2019 William Greene
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
507 2019-2020 Markus Meisinger
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
508
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
509
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
510 See also the list of contributors in the Octave manual (the file
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents:
diff changeset
511 doc/interpreter/contributors.in in the sources).