blob: bce8fdcea3d5ed33f529dec430238805c7913269 (
plain)
1
2
3
4
5
|
clc; clear; close;
mprintf('T1=(R1*C1)+(R1*C2)+(R1*C3)\n\n');//for node 1
mprintf(' T2=(R1*C1)+(R1*C3)+(R1+R2)*C2\n\n');//for node 2
mprintf(' T3=(R1*C1)+(R1*C2)+(R1+R3)*C3\n\n');//for node 3
|