Error using the integral function - A and B must be floating-point scalars.

조회 수: 2 (최근 30일)
.
  댓글 수: 1
Star Strider
Star Strider 2015년 11월 4일
The original (now deleted) post included this code:
Ginf = 4.0;
t = [0:500]
t1 = 100;
t2 = 500;
y1 = @(t) t/t1;
y2 = @(t) t/t2;
fun1 = @(y)exp(-y)./y;
Eiy1 = integral(@(t)fun1(y1(t)), 0, Inf);
Eiy2 = integral(@(t)fun1(y2(t)), 0, Inf);
E21(y1) = integral((Eiy1)./y, Inf, y1)
E21(y1) = integral((Eiy2)./y, Inf, y2)
G(t) = Ginf -[Eiy1*log(t/y1)-E21(y1)]+[Eiy2*log(t/y2)-E21(y2)]
plot(G(t), t)

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

채택된 답변

Adam Barber
Adam Barber 2015년 11월 4일
Your variables "y1" and "y2" are vectors. The command:
Eiy1 = integral(fun1, Inf, y1)
is really doing the integral of : exp(-y)/y from y = Inf to a vector.
This doesn't really make sense. The bounds (2nd and 3rd input arguments to integral) need to be scalar values.

추가 답변 (0개)

카테고리

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