Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - English

Change language to:
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 help >> Data Structures > getfield

getfield

list field extraction

Calling Sequence

[x,...]=getfield(i,l)

Arguments

x

matrix of any possible types.

l

list, tlist or mlist variable.

i

field index, see extraction for more details.

Description

This function is an equivalent of [x,...]=l(i) syntax for field extraction with the only difference that it also applies to mlist objects.

Examples

l=list(1,'qwerw',%s)
[a,b]=getfield([3 2],l)
 
a=hypermat([2,2,2],rand(1:2^3));// hypermatrices are coded using mlists
a(1) // the a(1,1,1) entry
getfield(1,a) // the mlist first field

See Also

Report an issue
<< fieldnames Data Structures hypermat >>

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:
Mon Oct 01 17:34:55 CEST 2012