필터 지우기
필터 지우기

Quad error, simple function,

조회 수: 2 (최근 30일)
adfnm
adfnm 2014년 8월 21일
댓글: Roger Stafford 2014년 8월 21일
I am a beginner, so please bear with me
cpn is referenced as such as this is part of a much larger code
clc
clear all
close all
cpn=[29105 8614.9 1701.6 103.47 909.79];
fun=@ (ll) cpn(1)+cpn(2)*((cpn(3)./ll)/sinh(cpn(3)./ll))^2+cpn(4)*((cpn(5)./ll)/cosh(cpn(5)./ll))^2
fun(100)
fun(200)
Q=quad(fun,18,200)
I am getting this error:
Error using quad (line 71) The integrand function must return an output vector of the same length as the input vector.
Error in Inttry (line 11) Q=quad(fun,18,200)
Thanks

답변 (2개)

Roger Stafford
Roger Stafford 2014년 8월 21일
Your function definition is lacking operators in at least four places, one after "cpn(2)", one after "cpn(4)", and one before each of the two 2's. As such it does not constitute a valid matlab function definition.
  댓글 수: 4
Roger Stafford
Roger Stafford 2014년 8월 21일
That looks like something that would work properly. Does it work, and is it the function you intended as the integrand?
adfnm
adfnm 2014년 8월 21일
Yes, that is the function. fun(100) returns a scalar, thats why I am baffled to the cause of this error

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


Iain
Iain 2014년 8월 21일
I guess that you've missed off declaring a few operations as elementwise operations, and it's getting out a square matrix instead of a vector.
Each divide, multiply and power should have a "." just before them.
  댓글 수: 2
adfnm
adfnm 2014년 8월 21일
fun(100) returns a scalar, thats why I am baffled to the cause of this error, It is not the function that is the problem!
Roger Stafford
Roger Stafford 2014년 8월 21일
The documentation of 'quad' at
http://www.mathworks.com/help/matlab/ref/quad.html
gives you the answer: "The function y = fun(x) should accept a vector argument x and return a vector result y, the integrand evaluated at each element of x."
This means that 'quad' doesn't send out just scalar quantities to be evaluated. It asks for entire vectors in x to be evaluated to the corresponding vectors y. That means that your expression which works for scalars but is inappropriate for vectors, will not succeed in 'quad'. You must put in those dots as Iain has recommended if you are to avoid the error messages and obtain a correct result.

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

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by