Hi everybody
I am new with MATLAB, also one of my friends ask me to integrate from this:
And I write this:
syms x a b c
f=(sqrt((x-a)^3))/(exp((x-b)/(sqrt(2)*c))^2);
A=int(f,x,a,inf);
But after run the Codes, Value A is:
int(exp((2^(1/2)*(b - x))/c)*(-(a - x)^3)^(1/2), x == a..Inf)
If pretty...