jarray
Create a Java array
Syntax
jarray(className, n_1 [, n_2 [, ...]])
Parameters
- className
A string giving the class name
- n_i
An integer giving the array dimension
Description
Creates a multidimensional array n_1x...xn_p of elements with type className. An array element can be accessed in using classical Scilab notations, the indexing follows Scilab convention: it start at 1.
The className can be one of the primitive datatypes: double, int, boolean, short, long, float, char and byte.
Examples
a = jarray("java.lang.String", 2, 2, 3); // array insertion a(1, 1, 3) = "Hi Jims !"; a(2, 1, 3) = "Hi Jims again !!" // array extraction length(a(2, 1, 3)); a(2, 1, 3)
History
Версия | Описание |
5.5.0 | Function introduced. Based on the 'JIMS' module. The main difference in the behavior compared to the JIMS module is that jautoUnwrap is enabled by default. |
Report an issue | ||
<< jallowClassReloading | Java из Scilab | jautoTranspose >> |