summaryrefslogtreecommitdiff
path: root/995/CH7/EX7.1/Ex7_1.sce
blob: 8926e95c5917aac02e434d92f88b623e386cbac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Ex:7.1
clc;
clear;
close;
I_i=4;
V_o=2;
V_i=50*10^-3;
I_o=200;
A_v=V_o/V_i;
A_i=I_o/I_i;
printf(" Volt gain = %f ",A_v); 
printf("\n Current gain = %f ",A_i); 
printf("\n Power gain = %f ",A_i*A_v);