Answers for "matlab integration"

1

matlab integration

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
Posted by: Guest on April-04-2021
1

integral in matlab

fun = @(x) exp(-x.^2).*log(x).^2;
q = integral(fun,xmin,xmax)
Posted by: Guest on October-05-2020
0

integrate mathlab

int(f)
Posted by: Guest on September-23-2020

Browse Popular Code Answers by Language