Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português do Brasil - English

Please note that the recommended version of Scilab is 5.3.3. This page might be outdated.
See the recommended documentation of this function

Scilab manual >> xcos > Scilab Utilities Functions > var2vec

var2vec

Transform a scilab variable in a vector of double

Calling Sequence

[vec]=var2vec(var)

Module

Description

var2vec / vec2var functions are used inside the interfacing functions of Scilab blocks to give the possibility to the user to handle Scilab objects with the real parameter (rpar) and with the discrete state register (z).

[vec]=var2vec(var)

Arguments

  • var : Input parameter. Can be any types of Scilab objects.

  • vec : Output parameter. A vector of real numbers.

Example

-->a=list("cos",[1.1,2])
a  = 
a(1)
cos   
a(2)
1.1    2.  
-->b=var2vec(a)         
b  =
4.244-314  
1.273-313  
8.488-314  
2.122-314  
4.941-324  
8.488-314  
5.093-313  
2.122-314  
2.122-314  
9.881-324  
1.1        
2.
<< scicos_debug Scilab Utilities Functions vec2var >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 2011-2012 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jan 26 16:25:14 CET 2011