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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2012-2012 - Scilab Enterprises - Bruno JOFRET
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
//
//
function []=xsetech(wrect, frect, logflag, arect)
// 1 <= RHS <= 3
if (argn(2) > 3 | argn(2) < 1) then
error(77, sprintf(_("%s: Wrong number of input argument(s): %d to %d expected."), "xsetech", 1, 3));
end
if ~exists("wrect", "local")
wrect = [];
else
// Check wrect
if (type(wrect) <> 1 | isreal(wrect) == %f | size(wrect) <> [1 4]) then
error(77, sprintf(_("%s: Wrong value given for %s."), "xsetech", "wrect"));
end
end
if ~exists("frect", "local")
frect = [];
else
// Check frect
if (type(frect) <> 1 | isreal(frect) == %f | size(frect) <> [1 4]) then
error(77, sprintf(_("%s: Wrong value given for %s."), "xsetech", "frect"));
end
frect = [frect(1), frect(2); frect(3), frect(4)]
end
if ~exists("logflag", "local")
logflag = [];
else
// check logflag
if (type(logflag) <> 10 | or(logflag == ["ll" "nn" "nl" "ln"]) == %f) then
error(77, sprintf(_("%s: Wrong value given for %s."), "xsetech", "logflag"));
end
end
if ~exists("arect", "local")
arect = [];
else
if (type(arect) <> 1 | isreal(arect) == %f | size(arect) <> [1 4]) then
error(77, sprintf(_("%s: Wrong value given for %s."), "xsetech", "arect"));
end
end
// Check if an existing axes matches wrect
a = gca()
curParent = a.parent;
allAxes = curParent.children;
found = %F;
for kAxes = 1:size(allAxes, "*")
if allAxes(kAxes).type == "Axes" & and(allAxes(kAxes).axes_bounds(:)==wrect(:)) then
a = sca(allAxes(kAxes));
found = %T;
break;
end
end
if ~found then
a = newaxes(curParent);
if ~isempty(wrect) then
a.axes_bounds = wrect;
end
end
if ~isempty(frect) then
a.data_bounds = frect;
end
if ~isempty(logflag) then
a.log_flags = logflag;
end
if ~isempty(arect) then
a.margins = arect;
end
endfunction
|