rjCubic.m
上传用户:fsbooksir
上传日期:2013-10-19
资源大小:14k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function [y] = rjGaussian(mu,x);
  2. if nargin < 2, error('Not enough input arguments.'); end
  3. [N,d] = size(x);      % N = number of data, d = dimension of x.
  4. y=zeros(N,1);
  5. for j=1:N,
  6.   z=norm(x(j,:)-mu(1,:));          % Euclidean distance.
  7.   y(j,1)= z.^(3);                 % Cubic spline.
  8. end;