Impedance parallel formula in Matlab
19 views (last 30 days)
Show older comments
Hi Guys,
Does anyone know how to calculate the parallel impedance in Matlab?
I would like to calculate the RL || Rc || Rf, how should I do?
Accepted Answer
Star Strider
on 9 Jul 2022
It is straightforward to create your own function to calculate it —
Zpar = @(z) 1./sum(1./z); % Calculates Parallel Impedance Of Impedance Vector 'z'
RL = randi(1000);
RC = randi(1000);
Rf = randi(1000);
Rv = [RL RC Rf]
Rp = Zpar(Rv)
.
2 Comments
More Answers (0)
See Also
Categories
Find more on Discrete Math in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!