Borrar filtros
Borrar filtros

quad with parameter

2 visualizaciones (últimos 30 días)
Matus
Matus el 18 de Mzo. de 2012
Edit Delete quad with parameter Matus asked less than a minute ago
Hi, i try to solve integral with quad and i want to use a parameter. when i put into matlab this code:
quad('cos(t.*314).^2',0,1)
n=2; %parameter
quad('cos(t.*314).^n',0,1,[],[],n)
the solution is not equal. Can you help me please. Thank you.

Respuesta aceptada

Walter Roberson
Walter Roberson el 18 de Mzo. de 2012
You cannot pass in parameters the way you are attempting to in the second form. You need to use an anonymous function.
n = 2;
quad(@(t) cos(t*pi).^n, 0, 1)
Please review the quad documentation and notice that there is no possible parameter after "trace", and read the part about Parameterizing Functions.
  1 comentario
Matus
Matus el 18 de Mzo. de 2012
Thank you Walter.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by