Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - 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 > setfield

setfield

list field insertion

Syntax

a = setfield(i, x, l)

Arguments

x

a matrix of any possible types.

l

a list, tlist or mlist variable.

i

a field index, see insertion for more details.

a

Updated variable.

Description

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

Examples

l=list(1,'qwerw',%s)
l(1)='Changed'
l(0)='Added'
l(6)=['one more';'added']
l=setfield(5,"added by setfield", l)

See also

  • insertion — partial variable assignation or modification

History

VersionDescription
6.0.0 setfield returns variable updated instead of change it "in place".
Report an issue
<< rlist Data Structures struct >>

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 Feb 14 14:57:23 CET 2019