Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2023.1.0 - English


inttrap

integration of experimental data by trapezoidal interpolation

Syntax

v = inttrap(s)
v = inttrap(x, s)

Arguments

x

vector of increasing x coordinate data. Default value is 1:size(s,'*')

s

vector of y coordinate data

v

value of the integral

Description

Computes:

s(i)=f(x(i)) and x0=x(1), x1=x(n)

where f is a function described by a set of experimental values.

Between mesh points function is interpolated linearly.

Examples

t = 0:0.1:%pi
inttrap(t,sin(t))

See also

  • intg — definite integral
  • intc — integral along a straight path in the complex plan
  • intl — Cauchy integral
  • integrate — integration of an expression by quadrature
  • intsplin — integration of experimental data by spline interpolation
  • splin — cubic spline interpolation
Report an issue
<< intsplin Differential calculus, Integration numderivative >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon May 22 12:37:05 CEST 2023