필터 지우기
필터 지우기

Impedance parallel formula in Matlab

조회 수: 14 (최근 30일)
Jason Ciou
Jason Ciou 2022년 7월 9일
댓글: Star Strider 2022년 7월 9일
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
Jan
Jan 2022년 7월 9일
How would you calculate it with pencil and paper?
Jason Ciou
Jason Ciou 2022년 7월 9일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2022년 7월 9일
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
Jason Ciou
Jason Ciou 2022년 7월 9일
Got it, thanks.
Star Strider
Star Strider 2022년 7월 9일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by