Info

This question is closed. Reopen it to edit or answer.

Can someone please help?

1 view (last 30 days)
J D
J D on 26 Mar 2020
Closed: MATLAB Answer Bot on 20 Aug 2021

Answers (1)

Star Strider
Star Strider on 26 Mar 2020
There are some problems.
First, ‘pv’ is not a function of ‘phi’, at least as written.
Second, use element-wise operations for multiplication and exponentiation (and division, however there are no division operations in ‘pv’).
This runs without error:
pv = @(R,theta,phi) (5*R*10*-3).*R.^2.*sin(theta);
Q = integral3(pv,0,2*pi,0,pi,2,3)
See the documentation on Array vs. Matrix Operations to understand element-wise operations.

Tags

Community Treasure Hunt

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

Start Hunting!