Borrar filtros
Borrar filtros

Impedance parallel formula in Matlab

14 visualizaciones (últimos 30 días)
Jason Ciou
Jason Ciou el 9 de Jul. de 2022
Comentada: Star Strider el 9 de Jul. de 2022
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?
  2 comentarios
Jan
Jan el 9 de Jul. de 2022
How would you calculate it with pencil and paper?
Jason Ciou
Jason Ciou el 9 de Jul. de 2022
Hi @Jan,
I know how to calculate it, I just would like to know, are any formulas in Matlab I can use?
I tyr to use parallel, but it can't work.

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 9 de Jul. de 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]
Rv = 1×3
220 386 722
Rp = Zpar(Rv)
Rp = 117.3548
See the documentation on Anonymous Functions for details if you are not familiar with them.
.
  2 comentarios
Jason Ciou
Jason Ciou el 9 de Jul. de 2022
Got it, thanks.
Star Strider
Star Strider el 9 de Jul. de 2022
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by