1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
## usage: toggle_plplot_use
##
## Use this script to activate/deactivate the default library for the
## PLplot plotting function (plot, mesh, etc.), as both the native
## gnuplot and the new octave-plplot libraries use similar names to the
## functions. toggle_plplot_use post-/pre-pends to LOADPATH the path for
## the PLplot functions in successive calls.
## File: toggle_plplot_use.m
## Author: Rafael Laboissiere <rafael@debian.org>
## Modified: Joao Cardoso
## Created on: Sun Oct 18 22:03:10 CEST 1998
## Last modified on: Fri Mar 7 09:38:38 CET 2003
##
## Copyright (C) 2003 Rafael Laboissiere
##
## PLplot is free software, distributable under the GPL. No
## warranties, use it at your own risk. It was originally written for
## inclusion in the Debian octave-plplot package.
1;
if ! exist ("use_plplot_state")
global use_plplot_state
use_plplot_state = "on";
else
if strcmp (use_plplot_state, "on")
use_plplot_state = "off";
else
use_plplot_state = "on";
endif
endif
use_plplot_path = plplot_octave_path;
use_plplot_i = findstr (LOADPATH, use_plplot_path);
if (!isempty (use_plplot_i))
LOADPATH (use_plplot_i(1):use_plplot_i(1)+length(use_plplot_path)-1)= "";
LOADPATH = strrep (LOADPATH, "::", ":");
endif
if (strcmp (use_plplot_state, "on"))
LOADPATH = [use_plplot_path, ":", LOADPATH];
plplot_stub;
elseif (strcmp (use_plplot_state, "off"))
LOADPATH = [LOADPATH, ":", use_plplot_path];
endif
use_plplot_lcd = pwd;
cd (use_plplot_path);
for use_plplot_i = [ char(glob("*.m ")); char(glob("support/*.m ")) ]'
clear (strrep (strrep (deblank(use_plplot_i'), ".m", ""), "support/", ""));
end
cd (use_plplot_lcd);
clear use_plplot_path use_plplot_lcd use_plplot_i
printf ("Use PLplot: %s\n", use_plplot_state);
|