Este team de expertos luego de muchos días de investigación y de recopilar de información, obtuvieron los datos necesarios, nuestro deseo es que te sea útil para tu trabajo.
Ejemplo 1: integral en matlab
fun =@(x)exp(-x.^2).*log(x).^2;
q =integral(fun,xmin,xmax)
Ejemplo 2: integración matlab
q =integral(fun,xmin,xmax)
q =integral(fun,xmin,xmax,Name,Value)
Description
q =integral(fun,xmin,xmax) numerically integrates function fun
from xmin to xmax using global adaptive quadrature and default error tolerances.
q =integral(fun,xmin,xmax,Name,Value) specifies additional options
with one or more Name,Value pair arguments.
For example, specify 'WayPoints' followed by a vector of real or complex
numbers to indicate specific points for the integrator to use.
Example1:
fun =@(x)exp(-x.^2).*log(x).^2;
q =integral(fun,0,Inf)% Evaluate integral from 0 to infinity
Example2:
TOL = eps;
fun =@(x)exp(-x.^2).*log(x).^2;
q =integral(fun,0,Inf,'AbsTol', TOL)% Evaluate integral from 0 to infinity with tolerance TOL
Si te apasiona este mundo, puedes dejar una reseña acerca de qué te ha gustado de este post.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)