Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Generate a surface plot of the following equation. ( 6 pts ) Z = sin ( sqrt ( X * X + Y * Y

Generate a surface plot of the following equation. (6 pts)
Z = sin(sqrt(X * X + Y * Y))/(sqrt(X * X + Y * Y))
You should explore the range (start with -10 to 10) and the pitch (how small each square will be), so that the output shows the ripple effect of the function.
Please note when X =0 and Y =0, the denominator becomes 0. You need to add a very small value, epsilon (eps in MATLAB), so that (X * X + Y * Y + eps) should be used above equation. Please make sure you understand the vectorized evaluation of your equation (.^ in the following example).
The following example code (range -5 to 5) generates the surface plot of z =2- x2- y2.
xg = linspace(-5,5,20); [X,Y]= meshgrid(xg, xg); Z =2- X.^2- Y.^2; surf(X,Y,Z)
Exampleoutputof: z=2-x2-y2
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

4th Edition

0805360476, 978-0805360479

More Books

Students also viewed these Databases questions