network_conversion | R Documentation |
Converts electrical networks parameter matrices into equivalent types.
abcd_to_h(abcd, z0 = c(50, 50))
abcd_to_s(abcd, z0 = c(50, 50))
abcd_to_t(abcd, z0 = c(50, 50))
abcd_to_y(abcd, z0 = c(50, 50))
abcd_to_z(abcd, z0 = c(50, 50))
h_to_abcd(h, z0 = c(50, 50))
h_to_s(h, z0 = c(50, 50))
h_to_t(h, z0 = c(50, 50))
h_to_y(h, z0 = c(50, 50))
h_to_z(h, z0 = c(50, 50))
s_to_abcd(s, z0 = c(50, 50))
s_to_h(s, z0 = c(50, 50))
s_to_t(s, z0 = c(50, 50))
s_to_y(s, z0 = c(50, 50))
s_to_z(s, z0 = c(50, 50))
t_to_abcd(t, z0 = c(50, 50))
t_to_s(t, z0 = c(50, 50))
t_to_y(t, z0 = c(50, 50))
t_to_z(t, z0 = c(50, 50))
y_to_abcd(y, z0 = c(50, 50))
y_to_h(y, z0 = c(50, 50))
y_to_s(y, z0 = c(50, 50))
y_to_t(y, z0 = c(50, 50))
y_to_z(y, z0 = c(50, 50))
z_to_abcd(z, z0 = c(50, 50))
z_to_h(z, z0 = c(50, 50))
z_to_s(z, z0 = c(50, 50))
z_to_t(z, z0 = c(50, 50))
z_to_y(z, z0 = c(50, 50))
abcd |
ABCD-Parameters |
z0 |
Characteristic Impedance |
h |
h-Parameters |
s |
S-Parameters |
t |
t-Parameters |
y |
Y-Parameters |
z |
Z-Parameters |
Converted electrical parameters in a 2x2 matrix format
S11 | S12 |
S21 | S22 |
S11 S21 S12 S22
s_to_abcd(c(0.1, 0.5, 0.5, 0.1))
s_to_abcd(matrix(c(0.1, 0.5, 0.5, 0.1), ncol = 2))
s_to_abcd(matrix(c(0.1, 0.5, 0.5, 0.1), ncol = 2), z0 = c(50,100))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.