To define a function to be integrated in MATLAB, you need to first define the function as a separate m-file or inline function.
myfun.m
with the code:main.m40 chars4 lines
main.m25 chars2 lines
Once you have defined your function, you can use any of the built-in integration functions like quad
, quadl
, or quadgk
to integrate the function in MATLAB. For example, to integrate the function myfun
defined above between 0 and 1, you would use the quad
function as follows:
main.m22 chars2 lines
This would give you the result 0.3333
.
gistlibby LogSnag