Mercurial > hg > octave-nkf
view scripts/miscellaneous/delete.m @ 20787:40ed9b46a800
new octave_value::string_value method with optional error message
* ov.h (octave_value::string_vector): New method.
ov-base.cc, ov-base.h (octave_base_value::string_vector):
New default method.
ov-str-mat.cc, ov-str-mat.h (octave_char_matrix_str::string_value):
New method.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 08 Oct 2015 16:43:22 -0400 |
parents | 9fc020886ae9 |
children |
line wrap: on
line source
## Copyright (C) 2004-2015 John W. Eaton ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 3 of the License, or (at ## your option) any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, see ## <http://www.gnu.org/licenses/>. ## -*- texinfo -*- ## @deftypefn {Function File} {} delete (@var{file}) ## @deftypefnx {Function File} {} delete (@var{file1}, @var{file2}, @dots{}) ## @deftypefnx {Function File} {} delete (@var{handle}) ## Delete the named file or graphics handle. ## ## @var{file} may contain globbing patterns such as @samp{*}. Multiple files ## to be deleted may be specified in the same function call. ## ## @var{handle} may be a scalar or vector of graphic handles to delete. ## ## Programming Note: Deleting graphics objects is the proper way to remove ## features from a plot without clearing the entire figure. ## @seealso{clf, cla, unlink, rmdir} ## @end deftypefn ## Author: jwe function delete (varargin) if (nargin == 0) print_usage (); endif if (iscellstr (varargin)) for arg = varargin files = glob (arg{1}); if (isempty (files)) warning ("delete: no such file: %s", arg{1}); endif for i = 1:length (files) file = files{i}; [err, msg] = unlink (file); if (err) warning ("delete: %s: %s", file, msg); endif endfor endfor elseif (isscalar (varargin) && all (ishandle (varargin{1}(:)))) ## Delete a graphics object. __go_delete__ (varargin{1}); else error ("delete: first argument must be a filename or graphics handle"); endif endfunction %!test %! unwind_protect %! file = tempname; %! tmp_var = pi; %! save (file, "tmp_var"); %! assert (exist (file, "file")); %! delete (file); %! assert (! exist (file, "file")); %! unwind_protect_cleanup %! unlink (file); %! end_unwind_protect %!test %! unwind_protect %! hf = figure ("visible", "off"); %! hl = plot (1:10); %! assert (get (gca, "children"), hl); %! delete (hl); %! assert (get (gca, "children"), zeros (0,1)); %! unwind_protect_cleanup %! close (hf); %! end_unwind_protect ## Test input validation %!error delete () %!error <first argument must be a filename> delete (struct ())