blob: 0bfb1426e809ad6c03d36bd1f3319bdab46c5130 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear//
//Variables
fo = 2.2 * 10**6 //Frequency (in Hertz)
//Calculation
f1o = fo * 2**0.5 //New frequency (in Hertz)
//Result
printf("\n It will work at frequency of %0.2f MHz when capacitance is reduced by 50 percentage.",f1o * 10**-6)
|