annotate aim-mat/modules/bmm/pzfc/PZFC_Small_Signal_Params.m @ 4:537f939baef0 tip

various bug fixes and changed copyright message
author Stefan Bleeck <bleeck@gmail.com>
date Tue, 16 Aug 2011 14:37:17 +0100
parents 74dedb26614d
children
rev   line source
tomwalters@0 1 function [b1, b2, c, n1, n2, frat] = PZFC_Small_Signal_Params(Fc, ValParam)
tomwalters@0 2 % function [b1, b2, c, n1, n2, frat] = PZFC_Small_Signal_Params(Fc, ValParam)
tomwalters@0 3 %
tomwalters@0 4 % get all the PZFC parameters, including b2 in the small-signal limit
tomwalters@0 5
tomwalters@0 6 [b1, B2, B21, c, n1, n2, frat, P0] = PZFC_Params(Fc, ValParam);
tomwalters@0 7
tomwalters@0 8 % The P0 is the noise floor that sets the small-signal limit of b2
tomwalters@0 9
tomwalters@0 10 b2 = PZFC_b2(B2, B21, P0, n2);
tomwalters@0 11