www.gusucode.com > 灰色GM(1,3)神经网络matlab源码程序 > jinlinxulie.m

    function [ z ] = jinlinxulie( x,k )
%UNTITLED9 Summary of this function goes here
%   Detailed explanation goes here

n=length(x);
z(1)=x(1);
for i=2:n
    z(i)=k*x(i)+k*x(i-1);
end
end