ordinary.m

来自「二维网格点的克里金插值」· M 代码 · 共 16 行

M
16
字号
function [newC,c] = ordinary(C,c)% appends mu to small c and ones to big C for ordynary kriging. that means% the mean of the interpolated data is not expectet to be the same as the% mean of the source data but all lambdas added up are equal to one.%% usage:    [C,c] = ordinary(C,c)% Rolf Sidler 6.6.2003c(end+1) = 1;newC = ones(length(C)+1);newC(1:end-1,1:end-1) = C;newC(end,end) = 0;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?