File: ISA.m

package info (click to toggle)
scilab 5.3.3-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 330,656 kB
file content (25 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (5)
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
% Test file for function isa()
% Copyright INRIA
% Matlab version: 6.5.1.199709 (R13) Service Pack 1
% V.C.

%m2scideclare x|? ?|?|?
a=isa(x,'logical')
b=isa(x,'char')
c=isa(x,'numeric')
d=isa(x,'int8')
e=isa(x,'uint8')
f=isa(x,'int16')
g=isa(x,'uint16')
h=isa(x,'int32')
k=isa(x,'uint32')
l=isa(x,'single')
m=isa(x,'double')
n=isa(x,'cell')
o=isa(x,'struct')
p=isa(x,'function_handle')
q=isa(x,'sparse')
r=isa(x,'lti')
s=isa(x,'user_defined_class')
%m2scideclare class|? ?|?|?
t=isa(x,class)