Cell array / Concatenate non - NaN results

Dear all,
I have a cell array that looks like this :
A = {
[NaN]
[NaN]
'a'
'[b c]'
[NaN]
'b' }
what I would like to obtain is this array without NaNs, and all "non-Nan" values concatenated, i.e.
B = {
'a'
'b'
'c'
'b'}
I would like to avoid doing different "for" loops, I mean doing it in the shortest way possible :)
I'm unsure on how to obtain this..
Thanks in advance !

댓글 수: 4

Guillaume
Guillaume 2019년 4월 10일
편집: Guillaume 2019년 4월 10일
Are the non-NaN cells really char vectors or are they actually numeric arrays?
If they really are char vectors, then a) why have you got numeric values (NaNs) mixed with text? and b) we need more details of what should happen to text with multiple characters in a cell.From your example it would appear that spaces and brackets need to be removed, what other characters? and that the remaining characters need to be split into individual cells. An odd thing to want.
If the cells are actually numeric arrays. What is their shape? Are they row vectors or scalar as your example would imply or can they be matrices, column vectors, or any shape really?
The problem is my data actually looks exactly like that, and I cannot change the way it is generated (alas !).
When there is a cell looking like this :
'[b c]'
Actually yes, I want to remove the [ and spaces, and make it different elements in my result.
is that an exeption? Are there more different cells? I mean, for example:
'[a;b]'
'[a,b;c,d]'
No, non-NaN values can only look like this :
'a'
or that :
'[b c]'
or maybe
'[b c d]'
But the "regex" will always have one of these forms

댓글을 달려면 로그인하십시오.

 채택된 답변

Guillaume
Guillaume 2019년 4월 10일

0 개 추천

You mention a regex. You'd be better off fixing the regex that produces that output. But if that's not an option:
A = {
[NaN]
[NaN]
'a'
'[b c]'
[NaN]
'b' }
regexp([a{:}], '[a-z]', 'match')
The concatenation of the cells + conversion to char gets rid of the NaNs anyway, so it's just a matter of extracting the characters.

댓글 수: 1

Eara Eara
Eara Eara 2019년 4월 11일
Many thanks to both of you @Guillaume and @Alex, I eventually managed to do what I wanted !

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Alex Mcaulley
Alex Mcaulley 2019년 4월 10일

0 개 추천

A(cellfun(@isnan,A)) = [];

댓글 수: 2

I tried this but it gives me an error
Error using cellfun
Non-scalar in Uniform output, at index 4, output 1.
Set 'UniformOutput' to false.
so I tried this
A(cellfun(@isnan,A, 'UniformOutput',0)) = [];
But it also gives me an error which is
Function 'subsindex' is not defined for values of class 'cell'.
Plus I'm not sure it does what I want with non-Nans values..
Alex Mcaulley
Alex Mcaulley 2019년 4월 10일
편집: Alex Mcaulley 2019년 4월 10일
Try this instead: (this code is to remove the nan values, for non nan values we need more information as Guillaume said)
A(logical(cellfun(@sum,cellfun(@isnan,A,'UniformOutput',false))))=[];

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2019년 4월 10일

댓글:

2019년 4월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by