File: %25pltlibH_p.sci

package info (click to toggle)
scilab-plotlib 0.41-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,196 kB
  • sloc: xml: 3,308; makefile: 15
file content (17 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function %pltlibH_p(h) 
  if ~is_handle_valid(h.handle)
    printf('handle is no more valid\n');
  else
    if length(h.handle)==1
      printf('Plotlib graphic handle of %s type\n',h.handle.type); 
    else
      printf('%d x %d matrix of Plotlib graphic handles of type:\n',size(h.handle)); 
      for i=1:size(h.handle,1)
        printf('\n');
        for j=1:size(h.handle,2)
          printf('%-9s',h.handle(i,j).type); 
        end  
      end
    end
  end
endfunction