±±¾©Ê¯ÓÍ»¯¹¤Ñ§Ôº2026ÄêÑо¿ÉúÕÐÉú½ÓÊÕµ÷¼Á¹«¸æ
²é¿´: 4298  |  »Ø¸´: 7
µ±Ç°Ö»ÏÔʾÂú×ãÖ¸¶¨Ìõ¼þµÄ»ØÌû£¬µã»÷ÕâÀï²é¿´±¾»°ÌâµÄËùÓлØÌû

ÓêÈË007

Òø³æ (СÓÐÃûÆø)

[ÇóÖú] MATLAB ÖÐV4²åÖµÔ­ÀíºÍ¼ÆËã²½Ö裬¼±Çó£¡

MATLAB ÖÐV4²åÖµÔ­ÀíºÍ¼ÆËã²½Ö裬Çó´óÉñÏê½â£¡
»Ø¸´´ËÂ¥

» ²ÂÄãϲ»¶

» ±¾Ö÷ÌâÏà¹Ø¼ÛÖµÌùÍÆ¼ö£¬¶ÔÄúͬÑùÓаïÖú:

Ïë×öµÄÊÂÇéµ²²»×¡£¡
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

Kevlar_J

Í­³æ (ÕýʽдÊÖ)

ÒýÓûØÌû:
3Â¥: Originally posted by ÓêÈË007 at 2014-12-24 16:38:22
²éÁ˺ö࣬ÓеÄÒ²Ö»ÊÇÒ»¸Å¶ø¹ý...

ÎÒ¾õµÃv4ÊÇËûÃÇ×Ô¼ºËã·¨£¬Ó¦¸Ã²»»áÈ«²¿¹«¿ª

[ ·¢×ÔСľ³æ¿Í»§¶Ë ]
ÕñÒ¶ÒÔѰ¸ù£¬¹ÛÀ½¶øËÝÔ´£¡www.source-grid.com
4Â¥2014-12-24 23:21:26
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû
²é¿´È«²¿ 8 ¸ö»Ø´ð

Kevlar_J

Í­³æ (ÕýʽдÊÖ)

¿´°ïÖúÎļþÓÐûÓУ¿

[ ·¢×ÔСľ³æ¿Í»§¶Ë ]
ÕñÒ¶ÒÔѰ¸ù£¬¹ÛÀ½¶øËÝÔ´£¡www.source-grid.com
2Â¥2014-12-24 00:39:11
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

ÓêÈË007

Òø³æ (СÓÐÃûÆø)

ÒýÓûØÌû:
2Â¥: Originally posted by Kevlar_J at 2014-12-24 00:39:11
¿´°ïÖúÎļþÓÐûÓУ¿

²éÁ˺ö࣬ÓеÄÒ²Ö»ÊÇÒ»¸Å¶ø¹ý
Ïë×öµÄÊÂÇéµ²²»×¡£¡
3Â¥2014-12-24 16:38:22
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

ÓêÈË007

Òø³æ (СÓÐÃûÆø)

ÒýÓûØÌû:
4Â¥: Originally posted by Kevlar_J at 2014-12-24 23:21:26
ÎÒ¾õµÃv4ÊÇËûÃÇ×Ô¼ºËã·¨£¬Ó¦¸Ã²»»áÈ«²¿¹«¿ª
...

´ÓMATLABÖÐÕÒ³öµÄÔ´³ÌÐò£¬Ö±½Ó²»¶®£¡
>>type griddata
function [xi,yi,zi] = gdatav4(x,y,z,xi,yi)
%GDATAV4 MATLAB 4 GRIDDATA interpolation

%   Reference:  David T. Sandwell, Biharmonic spline
%   interpolation of GEOS-3 and SEASAT altimeter
%   data, Geophysical Research Letters, 2, 139-142,
%   1987.  Describes interpolation using value or
%   gradient of value in any dimension.

xy = x( + y(*sqrt(-1);

% Determine distances between points
d = xy(:,ones(1,length(xy)));
d = abs(d - d.');
n = size(d,1);
% Replace zeros along diagonal with ones (so these don't show up in the
% find below or in the Green's function calculation).
d(1:n+1:numel(d)) = ones(1,n);

non = find(d == 0, 1);
if ~isempty(non),
  % If we've made it to here, then some points aren't distinct.  Remove
  % the non-distinct points by averaging.
  [r,c] = find(d == 0);
  k = find(r < c);
  r = r(k); c = c(k); % Extract unique (row,col) pairs
  v = (z(r) + z(c))/2; % Average non-distinct pairs
  
  rep = find(diff(c)==0);
  if ~isempty(rep), % More than two points need to be averaged.
    runs = find(diff(diff(c)==0)==1)+1;
    for i=1:length(runs),
      k = (c==c(runs(i))); % All the points in a run
      v(runs(i)) = mean(z([r(k);c(runs(i))])); % Average (again)
    end
  end
  z(r) = v;
  if ~isempty(rep),
    z(r(runs)) = v(runs); % Make sure average is in the dataset
  end

  % Now remove the extra points.
  z(c) = [];
  xy(c, = [];
  xy(:,c) = [];
  d(c, = [];
  d(:,c) = [];
  
  % Determine the non distinct points
  ndp = sort([r;c]);
  ndp(ndp(1:length(ndp)-1)==ndp(2:length(ndp))) = [];

  warning('MATLAB:griddata:NonDistinctPoints',['Averaged %d non-distinct ' ...
            'points.\n         Indices are: %s.'],length(ndp),num2str(ndp'))
end

% Determine weights for interpolation
g = (d.^2) .* (log(d)-1);   % Green's function.
% Fixup value of Green's function along diagonal
g(1:size(d,1)+1:numel(d)) = zeros(size(d,1),1);
weights = g \ z(;

[m,n] = size(xi);
zi = zeros(size(xi));
jay = sqrt(-1);
xy = xy.';

% Evaluate at requested points (xi,yi).  Loop to save memory.
for i=1:m
  for j=1:n
    d = abs(xi(i,j)+jay*yi(i,j) - xy);
    mask = find(d == 0);
    if ~isempty(mask), d(mask) = ones(length(mask),1); end
    g = (d.^2) .* (log(d)-1);   % Green's function.
    % Value of Green's function at zero
    if ~isempty(mask), g(mask) = zeros(length(mask),1); end
    zi(i,j) = g * weights;
  end
end

if nargout<=1,
  xi = zi;
end
Ïë×öµÄÊÂÇéµ²²»×¡£¡
5Â¥2014-12-25 10:22:14
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû
×î¾ßÈËÆøÈÈÌûÍÆ¼ö [²é¿´È«²¿] ×÷Õß »Ø/¿´ ×îºó·¢±í
[¿¼ÑÐ] 085600£¬²ÄÁÏÓ뻯¹¤321·ÖÇóµ÷¼Á +9 ´ó²öС×Ó 2026-03-28 9/450 2026-03-28 14:56 by ÉñÂí¶¼²»¶®
[¿¼ÑÐ] µ÷¼Á +3 ºÃºÃ¶ÁÊé¡£ 2026-03-28 3/150 2026-03-28 12:04 by Íõ±£½Ü33
[¿¼ÑÐ] 081200-314 +3 LILIQQ 2026-03-27 4/200 2026-03-28 09:41 by ±£»¤µØÇòÄãÎÒ×öÆ
[¿¼ÑÐ] ²ÄÁÏÓ뻯¹¤¿¼Ñе÷¼Á +17 ‹üÈA 2026-03-22 17/850 2026-03-28 08:35 by WYUMater
[¿¼ÑÐ] ²ÄÁÏÇóµ÷¼Á Ò»Ö¾Ô¸¹þ¹¤´ó×Ü·Ö298·Ö£¬Ç°Èý¿Æ223·Ö +5 dongfang59 2026-03-27 5/250 2026-03-28 04:53 by wxiongid
[¿¼ÑÐ] 328Çóµ÷¼Á +7 àŵεĻù±¾¶¼ 2026-03-27 7/350 2026-03-28 04:19 by fmesaito
[¿¼ÑÐ] 085701»·¾³¹¤³ÌÇóµ÷¼Á +9 ¶à¾ÃÉϿΠ2026-03-27 9/450 2026-03-28 03:58 by fmesaito
[¿¼ÑÐ] Ò»Ö¾Ô¸ÄÏʦ´ó0703»¯Ñ§ 275Çóµ÷¼Á +4 RipcordÉϰ¶ 2026-03-27 4/200 2026-03-27 17:00 by zhyzzh
[¿¼ÑÐ] 303Çóµ÷¼Á +7 °²ÒäÁé 2026-03-22 8/400 2026-03-27 11:46 by sanrepian
[¿¼ÑÐ] Çóµ÷¼Á +6 ÁÖ֮Ϧ 2026-03-24 6/300 2026-03-27 08:38 by hypershenger
[¿¼ÑÐ] ¡¾Ë«Ò»Á÷ԺУÐÂÄÜÔ´¡¢»·¾³²ÄÁÏ£¬²ÄÁϼӹ¤ÓëÄ£ÄâÕÐÊÕ´óÁ¿µ÷¼Á¡¿ +4 Higraduate 2026-03-22 8/400 2026-03-26 20:34 by Higraduate
[¿¼ÑÐ] Öйú¿ÆÑ§ÔºÉîÛÚÏȽø¼¼ÊõÑо¿Ôº-¹âÏË´«¸Ð¿ÎÌâ×éÕÐÉú-Öйú¿ÆÑ§Ôº´óѧ¡¢ÉîÛÚÀí¹¤´óѧÁªÅà +5 YangTyu1 2026-03-26 5/250 2026-03-26 18:27 by èßäèßäѽ
[¿¼ÑÐ] Ò»Ö¾Ô¸±±¾©»¯¹¤´óѧ²ÄÁÏÓ뻯¹¤£¨085600£©296Çóµ÷¼Á +9 µ¾ÆÞС±à 2026-03-26 9/450 2026-03-26 16:16 by ²»³Ôô~µÄ؈
[¿¼ÑÐ] 281Çóµ÷¼Á +6 Koxui 2026-03-24 7/350 2026-03-26 15:37 by Î޼ʵIJÝÔ­
[¿¼ÑÐ] ²ÄÁÏÓ뻯¹¤328·Öµ÷¼Á +6 ¡££¬¡££¬¡££¬¡£i 2026-03-23 6/300 2026-03-25 22:30 by 418490947
[¿¼ÑÐ] Ò»Ö¾Ô¸ÄϺ½ 335·Ö | 0856²ÄÁÏ»¯¹¤ | GPA 4.07 | ÓпÆÑо­Àú +6 cccchenso 2026-03-23 6/300 2026-03-25 22:25 by 544594351
[¿¼ÑÐ] ÍøÂç¿Õ¼ä°²È«0839Õе÷¼Á +4 w320357296 2026-03-25 6/300 2026-03-25 17:59 by 255671
[¿¼ÑÐ] 347Çóµ÷¼Á +4 L when 2026-03-25 4/200 2026-03-25 13:37 by cocolv
[¿¼ÑÐ] 085404µç×ÓÐÅÏ¢284·ÖÇóµ÷¼Á +4 13659058978 2026-03-24 4/200 2026-03-24 12:15 by syl20081243
[¿¼ÑÐ] Ò»Ö¾Ô¸ºÓ±±¹¤Òµ´óѧ0817»¯¹¤278·ÖÇóµ÷¼Á +7 jhybd 2026-03-23 12/600 2026-03-24 09:03 by jhybd
ÐÅÏ¢Ìáʾ
ÇëÌî´¦ÀíÒâ¼û