blob: 395114163a8d2c5e2687151e7a57db6fabe4a001 (
plain)
1
2
3
4
5
|
clc;
disp("Example 5.5")
// WE need to calculate the integral of the manipulated expression in terms of y/delta
int= integrate('2*y-(5*y*y)+(4*y*y*y)-(y*y*y*y)','y',2,1)
disp(int, "Momentum thickness is ")
|