blob: 5bcf63bf267198bd535a5a49942b87738d5eb121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// =============================================================================
// 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);
if type(b) <> 1 then pause,end
if size(b) <> [12 1] then pause,end
|