comparison scripts/deprecated/splu.m @ 10549:95c3e38098bf

Untabify .m scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:28:50 -0700
parents eb63fbe60fab
children be55736a0783
comparison
equal deleted inserted replaced
10548:479536c5bb10 10549:95c3e38098bf
30 function varargout = splu (varargin) 30 function varargout = splu (varargin)
31 persistent warned = false; 31 persistent warned = false;
32 if (! warned) 32 if (! warned)
33 warned = true; 33 warned = true;
34 warning ("Octave:deprecated-function", 34 warning ("Octave:deprecated-function",
35 "splu is obsolete and will be removed from a future version of Octave; please use lu instead"); 35 "splu is obsolete and will be removed from a future version of Octave; please use lu instead");
36 endif 36 endif
37 37
38 for i = 2 : nargin 38 for i = 2 : nargin
39 arg = varargin {i}; 39 arg = varargin {i};
40 if (! isscalar (arg)) 40 if (! isscalar (arg))