1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
function z = s2z(s,ref)
% z = s2z(s [,ref])
%
% Scattering to Z transformation
%
% input:
% s: S-matrix matrix nxnxf (f: number of frequencies)
% ref: (optional) reference impedance (default 50 Ohm)
%
% output:
% z: Z-matrix nxnxf
%
% Reference: http://qucs.sourceforge.net/tech/node98.html
%
% Thorsten Liebig <thorsten.liebig@gmx.de>
% Feb. 2013
if nargin < 2
Z0 = 50;
else
Z0 = ref;
end
N = size(s,1);
Nf = size(s,3);
if (numel(Z0)==1)
Z0 = Z0*ones(N,1);
end
E = eye(N);
Zref = zeros(N,N);
G = Zref;
for n=1:N
Zref(n,n) = Z0(n);
G(n,n) = 1/sqrt(real(Z0(n)));
end
z=zeros(N,N,Nf); %preallocate
for f=1:Nf
z(:,:,f) = G\ ((E-s(:,:,f))\(s(:,:,f)+E))*Zref*G;
end
|