[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Octave-bug-tracker] [bug #47014] netcdf: not writing NaNs
From: |
Alexander Barth |
Subject: |
[Octave-bug-tracker] [bug #47014] netcdf: not writing NaNs |
Date: |
Tue, 15 Mar 2016 09:48:43 +0000 |
User-agent: |
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0 |
Follow-up Comment #2, bug #47014 (project octave):
Thank you for the bug report and the reproducing netcdf file.
This is fixed in netcdf 1.0.9
I get now the same results as in matlab:
>> pkg load netcdf
>> x = ncread('foo.nc', 'tp');
>> x(10,1,29)
ans = NaN
>> x(10,1,29) = nan ;
>> ncwrite('foo.nc', 'tp', x);
>> x = ncread('foo.nc', 'tp');
>> x(10,1,29)
ans = NaN
>>
This bug can be closed.
_______________________________________________________
Reply to this item at:
<http://savannah.gnu.org/bugs/?47014>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Octave-bug-tracker] [bug #47014] netcdf: not writing NaNs,
Alexander Barth <=