blob: 16dd348788b5f54a2e953f84e35ace196ad4a965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Chapter 6 example 9
//------------------------------------------------------------------------------
clc;
clear;
// Given data
f = 20*10^9; // oscillating freq. of Gunn device
Vs = 10^5; // saturation carrier velocity in m/s
// Calculations
L = Vs/f // length of device
// output
mprintf('length of device = %d µm',L*10^6);
//-------------------------------------------------------------------------------
|