how to recognize if an element of a cell array is a char vector

조회 수: 14 (최근 30일)
Umberto Filippi
Umberto Filippi 2021년 8월 17일
댓글: Umberto Filippi 2021년 8월 17일
Good morning to everyone,
I am writing a code which takes all the 'n' variable inputs (varargin) and creates a (n/2)x2 cell array. It Is a name value pair function, so input arguments are coming in pairs.
Since the first column must contain only name, I have to check that they are not number, and return and empty cell array if they are.
Unfortunately the ischar or isnumeric commands are not working since varargin() with () indices gives a cell array and ischar is false for cell array.
An example is C = name_value_pairs('name', 'John Smith', 'age', 32, 'children', {'Bill' 'Cloe'})
C =
3×2 cell array
{'name' } {'John Smith'}
{'age' } {[ 32]}
{'children'} {1×2 cell }
But with C = name_value_pairs('name', 'John Smith', 34, 32, 'children', {'Bill' 'Cloe'}), I Should obtain an empty C.
Can anyone help me please?

채택된 답변

Yazan
Yazan 2021년 8월 17일
c = {'name', 'John Smith'; 'age', 32; 'children', cell(1,2)}
c = 3×2 cell array
{'name' } {'John Smith'} {'age' } {[ 32]} {'children'} {1×2 cell }
cellfun(@ischar, c)
ans = 3×2 logical array
1 1 1 0 1 0

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by