solving integral in matlab

Hi, I want to find the solution to this integral as a function of x: integral(between 0 and x) of (x-z)dz. The answer should be x^2/2. Thanks!

2 comentarios

John D'Errico
John D'Errico el 3 de Jun. de 2020
And what, since this is surely homework, have you tried? Have you tried using int? Read the help and the examples for int. I just did it, and indeed, the answer seems to be x^2/2. So why not make an effort?
David Cuberes
David Cuberes el 3 de Jun. de 2020
John, it is research, not homework. Thanks for asking! This is what I have tried:
fun=@(x-z)dz;
q=integral(fun,0,x)

Iniciar sesión para comentar.

Respuestas (1)

Stephan
Stephan el 3 de Jun. de 2020

1 voto

What you are looking for is an analytical solution. The integral function does solve numeric. To solve symbolic use int as John already pointed out. Im sure if you read the informations given in the link you will get it very fast.

4 comentarios

David Cuberes
David Cuberes el 3 de Jun. de 2020
Thanks, Stephan. It works doing this:
syms x z
expr = x-z;
Fz = int(expr,z,[0 x])
Stephan
Stephan el 3 de Jun. de 2020
Did you notice that you can accept and/or vote for useful answers?
David Cuberes
David Cuberes el 3 de Jun. de 2020
I gave your comment a thumbs up. Thanks. I am new in this matlab world and in this forum.
Stephan
Stephan el 3 de Jun. de 2020
Feel free to ask the community and be welcome here!

Iniciar sesión para comentar.

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 3 de Jun. de 2020

Comentada:

el 3 de Jun. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by