About 50 results
Open links in new tab
  1. How do I do numerical integration of a vector in MATLAB?

    Integrating without using MATLAB's built-ins would require you to have a numerical method in mind for use. The trapezoid method is one of the simplest ones; you simply find the area under the graph …

  2. matlab - how to make a plot of an integral function? - Stack Overflow

    Sep 14, 2015 · 3 integral can only handle numeric values for the integration limits. To have a generic integration limit, you can define that limit to be a symbolic variable and carry out the integration …

  3. Calculating integrals on matlab - Stack Overflow

    Sep 2, 2015 · As for assuming Matlab automatically plots an integral after calculating it, you should not do that. Matlab is mainly created for complicated functions (maybe with no analytic solution or a too …

  4. How do I integrate a matrix function in Matlab? - Stack Overflow

    Dec 27, 2015 · Matlab (latest, 2015) provides the integral function to numericaly compute integrals of functions For functions that have a multi-dimensional domain (e.g matrix-valued functions) you can …

  5. matlab - How to solve a double integral with any code? - Stack Overflow

    Mar 1, 2023 · I have an double integral: Because exp(−𝑥^2) is a non-integrable function, I have tried to solve this using the quadgk function in MATLAB, but I don't get a good result. Changing the integral's …

  6. How to obtain integral from a multidimensional array in Matlab?

    How to obtain integral from a multidimensional array in Matlab? Ask Question Asked 10 years, 11 months ago Modified 1 year, 11 months ago

  7. Double integral in MATLAB - Stack Overflow

    Jan 11, 2012 · Generally speaking, for numeric integration, you can transform an integral with dependent boundary conditions to one with independent boundaries by multiplying by a function that …

  8. How to plot the graph of double integral in Matlab?

    Mar 3, 2013 · If you want to plot the integral for different values of x limits (in the above example it is between 0 and 2) you can do something like this:

  9. integral - Use of 'ArrayValued' in Matlab numerical integration - Stack ...

    Sep 23, 2022 · From the documentation for integral describing the integrand argument: For scalar-valued problems, the function y = fun(x) must accept a vector argument, x, and return a vector result, …

  10. math - infinite integration with matlab - Stack Overflow

    Dec 18, 2016 · I want to compute the following type of integrals in Matlab. It is the integral of function e^-(u)*u and the boundaries are zero and infinity. This integral should return 1. How can I do this in ...