Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.0 - Русский

Change language to:
English - Français - 日本語 - Português -

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

Справка Scilab >> Java из 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

ВерсияОписание
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 >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 14 15:13:38 CET 2017