• 大小: 1.62MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-29
  • 语言: Matlab
  • 标签: GRACE  

资源简介

GRACE反演水matlab代码,适合初学者,能够快速上手.....

资源截图

代码片段和文件信息

% Filter coefficients in the spectral domain of a Gaussian filter.
%
% Input:
% radius: half-with radius parameter in km.
% maxDegree: maximum degree to compute.
%
% Output:
% wn: (n + 1) x 1 vector with n = maxDegree.
% The vector element wn(n + 1) contains the filter coefficient of degree n.

function wn = filterCoefficientsGaussian(radius maxDegree)

R = 6378.137; % Earth radius [km]
b = log(2.)/(1-cos(radius/R));

wn = zeros(maxDegree+11);
wn(1) = 1;
wn(2) = (1+exp(-2*b))/(1-exp(-2*b)) - 1/b;
for n=2:maxDegree
  wn(n+1) = -(2*n-1)/b * wn(n) + wn(n-1);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-07-22 15:05  GRACE水储量解算Matlab代码\
     文件     1267356  2015-11-30 02:37  GRACE水储量解算Matlab代码\coast.dat
     文件         568  2015-11-30 03:11  GRACE水储量解算Matlab代码\filterCoefficientsGaussian.m
     文件         914  2015-11-30 03:12  GRACE水储量解算Matlab代码\geoid_fast.m
     文件        1737  2015-11-30 03:12  GRACE水储量解算Matlab代码\gravityDisturbance.m
     文件        1067  2015-11-30 03:12  GRACE水储量解算Matlab代码\gravityDisturbance.m~
     文件        1247  2015-11-30 03:12  GRACE水储量解算Matlab代码\gravityDisturbance_fast.m
     文件      687056  2015-11-30 02:37  GRACE水储量解算Matlab代码\ITG-Grace2010_2008-03.gfc
     文件      687056  2015-11-30 02:37  GRACE水储量解算Matlab代码\ITG-Grace2010_2008-09.gfc
     文件        1567  2015-11-30 03:11  GRACE水储量解算Matlab代码\legendreFunctions.m
     文件       19475  2015-11-30 02:37  GRACE水储量解算Matlab代码\loadLove.txt
     文件        1197  2015-11-30 03:12  GRACE水储量解算Matlab代码\main.m
     文件      195460  2015-11-30 03:11  GRACE水储量解算Matlab代码\pract1_sphericalHarmonics.pdf
     文件        1819  2015-11-30 03:11  GRACE水储量解算Matlab代码\readPotentialCoefficients.m
     文件         704  2015-11-30 03:11  GRACE水储量解算Matlab代码\showGrid.m
     文件      595216  2015-11-30 03:12  GRACE水储量解算Matlab代码\slides_practical1_sphericalHarmonics.pdf
     文件        1378  2015-11-30 03:12  GRACE水储量解算Matlab代码\totalWaterStorage_fast.m
     文件         465  2015-12-21 22:04  GRACE水储量解算Matlab代码\来源.txt

评论

共有 条评论