Path: news.mathworks.com!newsfeed-00.mathworks.com!newsfeed2.dallas1.level3.net!news.level3.com!postnews.google.com!h2g2000vbd.googlegroups.com!not-for-mail
From: Greg Heath <heath@alumni.brown.edu>
Newsgroups: comp.soft-sys.matlab
Subject: Re: changing transfer functions in nn tool box
Date: Mon, 2 Nov 2009 04:34:40 -0800 (PST)
Organization: http://groups.google.com
Lines: 13
Message-ID: <3e9fe425-2940-4a75-ac24-4cc9fdc08762@h2g2000vbd.googlegroups.com>
References: <hcm5lk$bn5$1@fred.mathworks.com>
NNTP-Posting-Host: 69.141.163.135
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
X-Trace: posting.google.com 1257165280 27151 127.0.0.1 (2 Nov 2009 12:34:40 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Mon, 2 Nov 2009 12:34:40 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: h2g2000vbd.googlegroups.com; posting-host=69.141.163.135; 
	posting-account=mUealwkAAACvQrLWvunjg50tRAnsNtJR
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 
	2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729),gzip(gfe),gzip(gfe)
Xref: news.mathworks.com comp.soft-sys.matlab:581798


On Nov 2, 4:36 am, "minu k k" <min...@gmail.com> wrote:
> how to replace tranfer functions in theneuralnetwork tool box with a wavelet specifically gaussian?

I don't know. However, the code for newff and others use
transfer functions that assume a dot product input. Therefore
you cannot easily implement a Gaussian unless all vectors are
normalized.
Then ||x-y)||^2 = ||x||^2 + ||y||^2 +2*sum(x.*y) = 2+2*dotprod(x,y).

Hope this helps.

Greg