Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.2 - 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.
See the recommended documentation of this function

Ajuda Scilab >> Estruturas de Dados > fieldnames

fieldnames

get a tlist, mlist or struct fields names

Calling Sequence

f = fieldnames(lst)

Arguments

lst

A tlist, mlist or struct variable.

f

Strings column vector of fields names.

Description

The fieldnames function returns field names of a tlist, mlist or struct. fieldnames does not work on cells.

Examples

fieldnames(tlist(['listtype', 'f1', 'f2'], [], []))
fieldnames(mlist(['V', 'key', 'value'], ['a' 'b' ; 'c' 'd'], [1 2 ; 3 4]))
fieldnames(struct('f1', 25, 'month', 'DEC', 'year', 2006))
obj.x = 3;
obj.y = 3;
fieldnames(obj)

See Also

  • extraction — extração de entradas de matrizes e listas
  • getfield — extração de campos de listas
  • tlist — objeto do Scilab e definição de listas com tipos ("typed lists")
  • mlist — objeto Scilab, definição de listas com tipos orientadas matricialmente
  • struct — criando um struct (estrutura)
<< tlist Estruturas de Dados isfield >>

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 May 12 11:45:27 CEST 2011