Clear Filters
Clear Filters

finite Integral in matlab

2 views (last 30 days)
Yichao Shi
Yichao Shi on 10 Dec 2020
Edited: weikang zhao on 11 Dec 2020
How to integrate functions in matlab?
fun = sqrt[10/(3*9.81)] / sqrt[-2*cos(x) - sin(x) + 2*cos(pi/6)-sin(pi/6)]
from 0 to pi/2
Thanks

Answers (1)

weikang zhao
weikang zhao on 11 Dec 2020
Edited: weikang zhao on 11 Dec 2020
use the numerical integration function "integral"
integral(@(x) sqrt(10/(3*9.81)) ./ sqrt(-2*cos(x) - sin(x) + 2*cos(pi/6)-sin(pi/6)),0,pi/2)

Categories

Find more on Programming in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!