How declare for the matlab matrix that an value don't is considerable ??
Show older comments
How declare for the matlab matrix that an value don't is considerable?
I'm opening netcdf data and I want that the matlab ignore a specific value.
How do I?
Thanks! Carlos
1 Comment
Carlos Batista
on 11 Jul 2014
Accepted Answer
More Answers (3)
dpb
on 11 Jul 2014
a=a(a~=2);
or
a(a==2)=[];
will replace a. If need to keep a for future reference, use the first form but assign RHS to another variable. NB: if the values aren't integers, floating point comparisons for exact values are not always reliable, you'll need to use "fuzzy" comparison or otherwise account for it.
dpb
on 11 Jul 2014
The size of the array has no bearing on the logic.
What I said, save it to another...
b=a(a~=2);
Or, there's the alternative of just using "logical addressing" directly without actually making a copy.
res_notwos=mean(a(a~=2)); % mean excluding elements equal 2
Or another alternative is
a(a==2)=nan; % nan as placeholder
res=nanmean(a); % Stat Toolbox has several such "NaN-aware" functions
The latter is particularly convenient when plotting as plot and friends simply ignore NaNs as well.
All depends on what you're objectives are as to which is the more convenient construct.
7 Comments
Carlos Batista
on 11 Jul 2014
Carlos Batista
on 11 Jul 2014
dpb
on 11 Jul 2014
No, Matlab normally does NOT ignore NaN with the exception of a few cases as previously noted. The Statistics Toolbox specifically has various functions that parallel the standard ones with the naming convention nanXXX that are coded to ignore NaN. Or, as also noted, plotting routines in general cleanly ignore them. Other than that, they're treated as any other value and will propagate thru the computations and likely sprinkle more around. So, it's a very specific solution for a very specific set of circumstances, NOT a general panacea. Again, only you can judge what's the most appropriate for you case--you've not given sufficient detail for us to know.
Carlos Batista
on 11 Jul 2014
dpb
on 11 Jul 2014
Well, as before, you can use logical addressing to return the locations...
result=yourfunction(x(isfinite(x));
Now, the problem may be that this will return a linear index rather than the 3D since there isn't any regular array necessarily that the resulting points fall into and certainly not the original 3D array.
I can't envision precisely what the data would look like as described so not sure I've got any better answer.
Carlos Batista
on 13 Jul 2014
dpb
on 13 Jul 2014
Again, depends on what you mean by "sum" for the case...if you mean "ignore locations where value is NaN" then as noted before, if you have the Statistics Toolbox there are specialized funtions --
>> a=[1,2,3,NaN,5]; b=[1,2,3,8,5];
>> c=nansum([a;b])
c =
2 4 6 8 10
If you don't have the Toolbox, you've got to write special code to do the same thing. Sometimes you can be "tricky" -- for addition,
>> a(isnan(a))=0;
>> c=a+b
c =
2 4 6 8 10
>>
For multiplication, the magic value is '1'. In general you must basically process on an element by element basis taking action as desired when find the NaN. Often an anonymous function and arrayfun and/or accumarray can help immeasurably.
But, there is no one general answer.
haseeb
on 11 Jul 2014
0 votes
a(:,2)=[];
try this
Categories
Find more on Marine and Underwater Vehicles in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!