?? ordinary.m
字號(hào):
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;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -