Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Português - Русский - 日本語
Aide de Scilab >> Java depuis Scilab > jarray

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

VersionDescription
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.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:31:23 CEST 2016