Integral2 of a dot product
Show older comments
Below is what I have:
Z=@(x,y) x+1i*y;
T=@(x,y) ((sinh(pi/ha*(Z(x,y)-1i*ha/2))).^2);
E=@(x,y) conj(1i*pi*V/ha*1/(K_ka_p)*sqrt((TC-TA)./(T(x,y)-TA)));
E_conj=@(x,y) conj(E(x,y));
Int=@(x,y) dot(E(x,y),(E_conj(x,y)))
Interaction=integral2(Int,0,1,0,1);
When I run the code, I get the error "Integrand output size does not match the input size." I can get integral2 of all the functions leading up to Int. Just the Int function results in error. Anyone out there knows how to resolve this issue? Thank you!
Answers (1)
Walter Roberson
on 11 Aug 2018
0 votes
"Integrand, specified as a function handle, defines the function to be integrated over the planar region xmin ≤ x ≤ xmax and ymin(x) ≤ y ≤ ymax(x). The function fun must accept two arrays of the same size and return an array of corresponding values. It must perform element-wise operations."
Your E(x,y) and E_conj(x,y) parts appear to handle that okay, but when you dot() those two arrays you get a single result instead of element-wise computation. Perhaps you should just be using .* instead of dot()
6 Comments
Neelima Dahal
on 12 Aug 2018
Walter Roberson
on 12 Aug 2018
When I was testing your code, I used random values:
V = rand();
ha = rand();
K_ka_p = rand();
TC = rand();
TA = rand();
all of which I assumed were scalars. If some of your values are non-scalar then if we knew the sizes we could probably figure out how to code the operations.
Neelima Dahal
on 12 Aug 2018
Walter Roberson
on 12 Aug 2018
For Z, the x and y are as passed in to E and E_conj, which in turn gets them from Int, which gets them from integral2().
integral2() passes arrays of arbitrary vector or 2D size (the size will vary according to the level of refinement integral2() thinks it currently needs.) integral2() expects element-by-element calculation as-if each point were calculated independently of each other point.
So to us it is not obvious what part you are expecting to be vectors that you dot together to produce a per-point value.
If one or more of V, ha, K_ka_p, TC, or TA were vectors then it could make sense.
Neelima Dahal
on 20 Aug 2018
Edited: Walter Roberson
on 20 Aug 2018
Walter Roberson
on 20 Aug 2018
Int1=@(x,y) (E_conj1(x,y).*(E_conj1(x,y)));
It would look to me more efficient to use
Int1=@(x,y) E_conj1(x,y).^2;
But your original had E dot E_conj, so it is not clear to me that the new Int1 calculates what you had wanted to calculate.
Categories
Find more on Execution Speed in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!