Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

INT will not evalaute integral

Status
Not open for further replies.

dkenney37

Mechanical
Joined
Jun 30, 2014
Messages
1
Location
DE
I have a code that needs to evalaute the arc length equation below:

syms x

a = 10; b = 10; c = 10; d = 10;

fun = 4*a*x^3+3*b*x^2+2*c*x+d

int((1+(fun)^2)^.5)

but all that returns is below:

ans =

int(((40*x^3 + 30*x^2 + 20*x + 10)^2 + 1)^(1/2), x)

Why wont matlab evaluate this integral? I added a line under to check if it would evaulate int(x) and it returned the desired result.
 
Did you read the help file for int?

TTFN
faq731-376
7ofakss

Need help writing a question or understanding a reply? forum1529
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top