Check for missing argument or incorrect argument data type in call to function 'sinc'.
Show older comments
I am trying to plot this problem:

However, I am encountering the error in the title whenever i try to plot it. Here is my code so far (I am still at a)):
function labactivity52()
[x,y]=meshgrid(-8:0.5:8);
z=sinc(sqrt((x.^2)+(y.^2)));
mesh(x,y,z), xlabel('x'), ylabel('y'), zlabel('z'), title('Surface Mesh Plot')
end
Whenever I try to run the function to see its 3D plot, I encounter this line:
Check for missing argument or incorrect argument data type in call to function 'sinc'.
Error in labactivity52 (line 3)
z=sinc(sqrt((x.^2)+(y.^2)));
What am I doing wrong? Is the given equation wrong?
Accepted Answer
More Answers (0)
Categories
Find more on Assumptions 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!