File: %25grayplot_i_h.sci

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (43 lines) | stat: -rw-r--r-- 1,017 bytes parent folder | download | duplicates (2)
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
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) INRIA
// 
// 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-en.txt
function h=%grayplot_i_h(i,v,h)
if type(i)==10 then
  set(h,i,v)
elseif type(i)==15 then
  hdl=h
  p=i($)
  if type(p)==1|type(p)==4|type(p)==2|type(p)==129|type(p)==15 then
    index=i($)
    i($)=null()
  else
    index=:
  end
  n=lstsize(i)
  for k=1:n-1
    p=i(k)
    if type(p)==10 then
      hdl=get(hdl,p),
    elseif type(p)==1|type(p)==4|type(p)==2|type(p)==129 then
      hdl=hdl(p)
    elseif type(p)==15 then
      hdl=hdl(p(:))
    else
      error('Invalid path')
    end
  end
  if type(index)==15 then
    hdl=hdl(index(:))
  else
    hdl=hdl(index)
  end
  set(hdl,i($),v)
else
  error('Invalid path')
end
endfunction