Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - 日本語

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ヘルプ >> Data Structures > cells > iscell

iscell

変数がセル配列かどうかを調べる

呼び出し手順

bool = iscell(x)

パラメータ

x

Scilab 変数

bool

A boolean

Description

iscell(x) は,xがセル配列の場合に真, それ以外の場合に偽となります.

iscell(1)
iscell(cell())
c = cell(1,2);
c{1} = "Scilab";
c{2} = datenum();
iscell(c)

参照

  • cell — 空行列のセル配列を作成する.
  • isstruct — 変数が構造体配列であるかどうか調べる
Report an issue
<< cellstr cells iscellstr >>

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 Jan 03 14:37:53 CET 2022