blob: 1afda51ea5d989b59f53a399a36428df2c0af37c (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 7.8 // Maximum response time
clc;
clear;
close;
//given data :
Vd=3*10^4;// in m/s
W=30*10^-6;// in m
Bm=Vd/(2*%pi*W);
M=(1/Bm)*10^9;
disp(M,"Maximum response time,(ns) = ")
|