Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

lets assume I have the following array:

a = {1; 'abc'; NaN}

Now I want to find out in which indices this contains NaN, so that I can replace these with '' (empty string).

If I use cellfun with isnan I get a useless output

cellfun(@isnan, a, 'UniformOutput', false)

ans = 
[          0]
[1x3 logical]
[          1]

So how would I do this correct?

share|improve this question

3 Answers

up vote 2 down vote accepted

Indeed, as you found yourself, this can be done by

a(cellfun(@(x) any(isnan(x)),a)) = {''}

Breakdown:

Fx = @(x) any(isnan(x))

will return a logical scalar, irrespective of whether x is a scalar or vector. Using this function inside cellfun will then erradicate the need for 'UniformOutput', false:

>> inds = cellfun(Fx,a)
inds =
     0
     0
     1

These can be used as indices to the original array:

>> a(inds)
ans = 
    [NaN]

which in turn allows assignment to these indices:

>> a(inds) = {''}
a = 
    [1]
    'abc'
    ''

Note that the assignment must be done to a cell array itself. If you don't understand this, read up on the differences between a(inds) and a{inds}` (sorry, couldn't find a descent link on this...)

share|improve this answer

I found the answer on http://www.mathworks.com/matlabcentral/answers/42273

a(cellfun(@(x) any(isnan(x)),a)) = {''}

However, I do not understant it...

share|improve this answer
  • a(ind) = [] will remove the entries from the array
  • a(ind)= {''} will replace the NaN with an empty string.

If you want to delete the entry use = [] instead of = {''}.
If you wanted to replace the NaNs with a different value just set it equal to that value using curly braces:

a(ind) = {value}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.