Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 8efd29b1 authored by POLYAKOV Andrey's avatar POLYAKOV Andrey
Browse files

Upload New File

parent cdb50c56
No related branches found
No related tags found
No related merge requests found
function nx=hnorm_sigmoid(x,Gd,alpha,beta,gamma,hn_fun)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% The function nx=hnorm_sigmoid(x, Gd, alpha, beta, gamma, hn_fun)
%% computes (for a given vector x) a canonical homogeneous norm
%% using universal approximator
%%
%% The (n x n) matrix Gd is a generator of linear dilation
%%
%% alpha, beta, gamma are parameter of universal approximator
%%
%% hn_fun a function which computes an explicit homogeneous norm
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
nz=hn_fun(x); pi_z=expm(-log(nz)*Gd)*x;
nx=0;
for i=1:size(alpha,2)
nx=nx+gamma(1,i)/(1+exp(alpha(1,i)+beta(:,i)'*pi_z));
end;
nx=nx*nz;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment