blob: c21f8e548c4c91ed67570cd31622ea8b7110e220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter-6 example 9
//=============================================================================
clc;
clear;
//input data
l = 12*10^-3;//gunn diode oscillator length in m
Vd = 2*10^8;//Drift velocity in gunn diode
//Calculations
F = Vd/l;//Frequency of Gunn Diode Oscillator
//output
mprintf('Frequency of Gunn Diode Oscillator is %3.2f Ghz',F/10^9');
//=============end of the program===============================================
|