y2h - Convert Y-parameters to hybrid h-parameters
Syntax
h_params = y2h(y_params)
Description
h_params = y2h(y_params) converts
the admittance parameters y_params into the hybrid
parameters h_params. The y_params input
is a complex 2-by-2-by-M array, representing M 2-port
Y-parameters. h_params is a complex 2-by-2-by-M array,
representing M 2-port hybrid h-parameters.
Examples
Convert Y-parameters to h-parameters:
%Define a matrix of Y-parameters.
Y11 = 0.0488133074245012 - 0.390764155450191i;
Y12 = -0.0488588365420561 + 0.390719345880018i;
Y21 = -0.0487261119282660 + 0.390851884427087i;
Y22 = 0.0487710062903760 - 0.390800401433241i;
y_params = [Y11,Y12; Y21,Y22];
%Convert to h-parameters
h_params = y2h(y_params);
See Also
abcd2h | h2y | s2h | y2abcd | y2s | y2z | z2h
Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
Get the Interactive Kit