how to find the equivalent resistance of two resistors in parallel and series

22 ビュー (過去 30 日間)
Kartickeyan V
Kartickeyan V 2017 年 7 月 18 日
編集済み: Andrei Bobrov 2017 年 7 月 18 日
help me finding the equivalent resistance of two resistors for example r1 and r2 in parallel and series
clc;
clear all;
r1=1200;
r2=1000;
rt=parallel(r1,r2);
display('rt')
when i run this code i am getting either answer ams as 1 or some error

回答 (2 件)

dbmn
dbmn 2017 年 7 月 18 日
parallel might not be the best function to use here. See more in the documentation (which is what you should do everytime you use a function either by typing help parallel or doc parallel)
sys = parallel(sys1,sys2)
% Which needs sys, sys1 and sys2 in a state space notation to work
but why bother writing these in that special state space notation when you can simply use Wikipedia and Google
rt = r1*r2 / (r1+r2);

Andrei Bobrov
Andrei Bobrov 2017 年 7 月 18 日
編集済み: Andrei Bobrov 2017 年 7 月 18 日
r1=1200;
r2=1000;
parallel = @(r1,r2)1/sum(1./[r1,r2]); % or: parallel = @(r1,r2)prod([r1,r2])/sum([r1,r2]);
rt=parallel(r1,r2)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by