필터 지우기
필터 지우기

How to calculate integral of a function ?

조회 수: 2 (최근 30일)
Captain Singh
Captain Singh 2014년 8월 5일
댓글: Captain Singh 2014년 8월 6일
Hello Friends, I am new for matlab, I want to calculate a integral but I don't know, how should I do it exactly. My matlab code is here:
_________________________________________________________________________________________________
clear all;
format long;
T = 0.6;
m = 3.00;
kmin = 1.0;
kmax = 10.0;
fun = @(k) k.^2/exp(sqrt(k.^2 + m.^2)/T) + 1;
q = int (fun,kmin,kmax);
_________________________________________________________________________________________________
When I execute the program I got error message:
*??? Undefined function or
method 'int' for input
arguments of type
'function_handle'.
Error in ==> nudenNccbar at 14
q = int (fun,kmin,kmax);*_ *
Please help me to short out the problem. Thank you.

채택된 답변

Michael Haderlein
Michael Haderlein 2014년 8월 6일
편집: Michael Haderlein 2014년 8월 6일
The function is quad, quadl, or quadgk:
fun = @(k) k.^2./exp(sqrt(k.^2 + m.^2)/T) + 1;
quad(fun,kmin,kmax)
ans = 9.0267
quadl(fun,kmin,kmax)
ans = 9.0268
quadgk(fun,kmin,kmax)
ans = 9.0268
Please note that a "." was missing in your equation (before the "/").

추가 답변 (1개)

Christopher Berry
Christopher Berry 2014년 8월 5일
The function name that you are looking for is integral not int. Changing this should get your code working. You can see the documentation for usage or examples here:
  댓글 수: 1
Captain Singh
Captain Singh 2014년 8월 6일
Firstly I had used "integral" but it didn't work. The error message was the same as above.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by