blob: 47364e31604b16b75b763519a4c6b9adf66bb661 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
disp("Example 7.2")
// The formula derived in the first part is
//de=2*phi*dp*e/(3*(1-e))
// and here de=dp/2 and we define x=de/dp
x=1/2
phi=1
e=(3/(4*phi))/(1+(3/(4*phi)))
disp(e)
|