필터 지우기
필터 지우기

How do I replace -1.0000e+30 with NaN?

조회 수: 2 (최근 30일)
Simbarashe Chidzambwa
Simbarashe Chidzambwa 2022년 11월 9일
댓글: Steven Lord 2022년 11월 10일
I want to replace -1.0000e+30 in an array of SST and used the following but its not working why?:
data=netcdf.open('HadISST_sst1.nc','NC_NOWRITE')
time=netcdf.getVar(data,0);
time_bnds=netcdf.getVar(data,1);
lat=netcdf.getVar(data,2);
lon=netcdf.getVar(data,3);
sst=netcdf.getVar(data,4);
sst(sst==-1.0000*1e+30)=NaN;

채택된 답변

KSSV
KSSV 2022년 11월 9일
Let T be your array.
tol = -10^10 ; % fix this to satisfied value
T(T<tol) = NaN ;
  댓글 수: 3
KSSV
KSSV 2022년 11월 9일
Thanks is accepting/ voting the answer. :)
Simbarashe Chidzambwa
Simbarashe Chidzambwa 2022년 11월 9일
Thank you very much it worked.

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

추가 답변 (1개)

Steven Lord
Steven Lord 2022년 11월 9일
Since I'm guessing -1e30 is an outlier in your data you could use filloutliers. I'll use a slightly smaller outlier value for this example because it makes y display more nicely.
y = 1:10;
y(7) = 100
y = 1×10
1 2 3 4 5 6 100 8 9 10
y2 = filloutliers(y, NaN)
y2 = 1×10
1 2 3 4 5 6 NaN 8 9 10
  댓글 수: 2
Simbarashe Chidzambwa
Simbarashe Chidzambwa 2022년 11월 10일
Thank you very much Stephen, though the number represents missing values.
Steven Lord
Steven Lord 2022년 11월 10일
You may be interested in standardizeMissing or fillmissing as well.

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

카테고리

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

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by