write a matlab function to find the equivalent resistance for the given circuit below

32 次查看(过去 30 天)
  2 个评论
Max Heiken
Max Heiken 2021-7-13
What were your previous attempts? Where are you stuck? Do you want others to do the work for you or do you want to learn something?
Scott MacKenzie
Scott MacKenzie 2021-7-13
编辑:Scott MacKenzie 2021-7-13
For two resistors in series (e.g., Ra and Rb), the equivalent resistance is Ra + Rb. For two resistors in parallel (e.g., Rc and Rd), the equivalent resistance is 1 / (1/Rc + 1/Rd). With this information and the figure in your question, you should be able to compute the equivalent resistance of the entire circuit.
Tip: Take it one step at a time -- start with R6 and R7.
If you get stuck, post your code and a follow-up question.

请先登录,再进行评论。

回答(1 个)

S. M. Raiyan Chowdhury
% You can use the following MATLAB function to perform your task.
% Here, take R = [R1, R2, R3, R4, R5, R6, R7]
function Req = equiv_res(R)
par = inline("1/(1/x + 1/y)");
Req = R(1) + par(R(2) + R(3), R(4) + par(R(5), R(6) + R(7)));
end

类别

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