Hi everybody
I am new with MATLAB, also one of my friends ask me to integrate from this:
And I write this:
But after run the Codes, Value A is:
If pretty it:
Now is there anybody know what should i do to solve this Problem ?
a b c are constants.
With Best Regards.
yassou.
I am new with MATLAB, also one of my friends ask me to integrate from this:
And I write this:
Code:
syms x a b c
f=(sqrt((x-a)^3))/(exp((x-b)/(sqrt(2)*c))^2);
A=int(f,x,a,inf);
Code:
int(exp((2^(1/2)*(b - x))/c)*(-(a - x)^3)^(1/2), x == a..Inf)
Now is there anybody know what should i do to solve this Problem ?
a b c are constants.
With Best Regards.
yassou.