blob: 4546e21aa4c973278540cf2332f14521a74e33f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 5.5
//Program to Determine DC Current Gain in Common Base Configuration
clear;
clc ;
close ;
//Given Data
Beeta=100;
//Calculation
Alpha=Beeta/(Beeta+1); //DC Current Gain in Common Base Configuration
//Displaying The Results in Command Window
printf("\n\t The DC Current Gain in Common Base Configuration is Alpha= %f .",Alpha);
|