changeset 2771:111495e05ca2 octave-forge

Note joint authorship
author pkienzle
date Wed, 29 Nov 2006 03:52:14 +0000
parents 9852a97aa7d8
children 9970b3350c00
files main/general/inst/issorted.m
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/main/general/inst/issorted.m	Sun Nov 26 14:17:50 2006 +0000
+++ b/main/general/inst/issorted.m	Wed Nov 29 03:52:14 2006 +0000
@@ -1,4 +1,4 @@
-## Copyright (C) 2006   Sissou   <sylvain.pelissier@gmail.com>
+## Copyright (C) 2006 Sissou and Paul Kienzle
 ##
 ## This program is free software; you can redistribute it and/or modify
 ## it under the terms of the GNU General Public License as published by
@@ -21,6 +21,9 @@
 ## @seealso{sort, sortrows}
 ## @end deftypefn
 
+## Author: Sissou <sylvain.pelissier@gmail.com> 
+## Author: Paul Kienzle <pkienzle@users.sf.net>
+
 function y = issorted(x,str)
 	if(nargin == 0)
 		usage(" \n issorted(x) \n issorted(A,'rows')");
@@ -37,4 +40,4 @@
 			endif;
 		endif;
 	endif;
-endfunction;
\ No newline at end of file
+endfunction;