comparison scripts/strings/strcat.m @ 2314:949ab8eba8bc

[project @ 1996-07-12 03:58:02 by jwe]
author jwe
date Fri, 12 Jul 1996 03:58:02 +0000
parents 5ca126254d15
children 6243c37ae2c5
comparison
equal deleted inserted replaced
2313:5ca126254d15 2314:949ab8eba8bc
14 ## 14 ##
15 ## You should have received a copy of the GNU General Public License 15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING. If not, write to the Free 16 ## along with Octave; see the file COPYING. If not, write to the Free
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
18 ## 02111-1307, USA. 18 ## 02111-1307, USA.
19
20 ## Author: jwe
19 21
20 function st = strcat (s, t, ...) 22 function st = strcat (s, t, ...)
21 23
22 if (nargin > 1) 24 if (nargin > 1)
23 if (isstr (s) && isstr (t)) 25 if (isstr (s) && isstr (t))