Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.5.1 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.

Ajuda do Scilab >> Java from Scilab > jconvMatrixMethod

jconvMatrixMethod

Set the way to convert matrices This function is obsolete.

Calling Sequence

method = jconvMatrixMethod()
jconvMatrixMethod(method)

Parameters

method

A string giving the type of conversion: 'rc' or 'cr'

Description

This function is obsolete and will be removed in Scilab 6.0.0, use preferabily the jautoTranspose function.

In Scilab a matrix such as [1 2 3;4 5 6] is stored [1 4 2 5 3 6] (column by column). In Java the same matrix is stored as [->[1 2 3] ->[4 5 6]] (array of pointers).

When method is 'cr' (column-row), the internal array [1 4 2 5 3 6] is passed as it is and Java creates the array [->[1 4] ->[2 5] ->[3 6]].

When method is 'rc' (row-column), the array [1 4 2 5 3 6] is passed as [1 2 3 4 5 6] and converted into [->[1 2 3] ->[4 5 6]].

By default, the method is set to 'cr'.

Examples

jconvMatrixMethod()
jconvMatrixMethod("cr")

See Also

History

VersãoDescrição
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
<< jcompile Java from Scilab jcreatejar >>

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:
Thu Oct 02 13:57:52 CEST 2014