blob: ab75a29a7aebe929129d285e287c78a449ae89aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
a=list("cos",[1.1,2]);
b=var2vec(a);
c=vec2var(b);
if type(c) <> 15 then pause,end
if c(1) <> 'cos' then pause,end
|