[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: changing amplitude in sigmoid_train function
From: |
Mike Miller |
Subject: |
Re: changing amplitude in sigmoid_train function |
Date: |
Thu, 17 Apr 2014 18:03:55 -0400 |
On Thu, Apr 17, 2014 at 07:11:50 -0700, shm wrote:
> I want to know that is it possible to have pulse of chosen amplitude by
> using sigmoid_train function of Octave.
> I want that pulse must attain a specific amplitude height. Instead of
> scaling it between [-1,1]. Is that possible?
Can you scale the output of sigmoid_train to get the results that you
want? For example
t = [0:1e3]' / 1e3;
y = 2 * sigmoid_train (t, [0.2, 0.4], 0.01);
plot (t, y);
Or is this not what you're looking for?
--
mike