~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to macros/m2sci/kernel/%operatio_6.sci

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
function val=%operatio_6(field,m2scitlist)
 
2
// File generated from %PROTO_6.g: PLEASE DO NOT EDIT !
 
3
// Copyright INRIA
 
4
// V.C.
 
5
val=[]
 
6
if field=="infer" then
 
7
  val=m2scitlist.out(1).infer
 
8
elseif field=="dims" then
 
9
  val=m2scitlist.out(1).infer.dims
 
10
elseif field=="type" then
 
11
  val=m2scitlist.out(1).infer.type
 
12
elseif field=="vtype" then
 
13
  val=m2scitlist.out(1).infer.type.vtype
 
14
elseif field=="property" then
 
15
  val=m2scitlist.out(1).infer.type.property
 
16
elseif field=="contents" then
 
17
  val=m2scitlist.out(1).infer.contents
 
18
else
 
19
  error("Extraction of "+string(field)+" from ''"+typeof(m2scitlist)+"'' tlist is not yet implemented !")
 
20
end
 
21
endfunction