26 #if defined (HAVE_CONFIG_H)
53 if (args.length () != 1)
58 if (args(0).issparse ())
59 error (
"rcond: for sparse matrices use 'rcond (full (a))' or 'condest (a)' instead");
61 if (args(0).is_single_type ())
63 if (args(0).iscomplex ())
67 retval =
m.rcond (mattyp);
68 args(0).matrix_type (mattyp);
74 retval =
m.rcond (mattyp);
75 args(0).matrix_type (mattyp);
78 else if (args(0).iscomplex ())
82 retval =
m.rcond (mattyp);
83 args(0).matrix_type (mattyp);
87 Matrix m = args(0).matrix_value ();
89 retval =
m.rcond (mattyp);
90 args(0).matrix_type (mattyp);
112 OCTAVE_END_NAMESPACE(
octave)
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn
#define DEFUN(name, args_name, nargout_name, doc)
Macro to define a builtin function.
void() error(const char *fmt,...)