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
|