blob: ed1cc9666533946e2abf926b20da87c15074f87c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 11.1:interaction length
clc;
clear;
close;
format('v',6)
po=1;//assume
p1=po/2;//
p2=p1;//
kl=asin(sqrt(p1));//in degree
disp(kl,"interaction length is")
//answer is in the form of pi in the textbook
|