필터 지우기
필터 지우기

integral of the besselj function

조회 수: 1 (최근 30일)
Olga Skorupa
Olga Skorupa 2024년 6월 10일
댓글: Olga Skorupa 2024년 6월 10일
how to count the integral of the besselj function from 0 to 4pi?

채택된 답변

Walter Roberson
Walter Roberson 2024년 6월 10일
syms nu x
result = int(besselj(nu, x), x, 0, 4*sym(pi))
result = 
Bessel J is a family of functions, distinguished by the ν value. You cannot get much of a result unless you specify the ν value you want to work with.
result0 = int(besselj(0, x), x, 0, 4*sym(pi))
result0 = 
vpa(result0)
ans = 
0.8340841018533418306979596564232

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by