series_shunt_impedance | R Documentation |
Calculates the series or shunt impedance based on ABCD-parameters
abcd_to_series_z(abcd)
abcd_to_shunt_z(abcd)
abcd |
Network ABCD-parameters, |
Complex impedance
abcd <- matrix(c(1,
complex(modulus = 50, argument = 0),
complex(modulus = 200, argument = pi / 2),
1), nrow = 2, byrow = TRUE)
z_series <- abcd_to_series_z(abcd)
z_shunt <- abcd_to_shunt_z(abcd)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.