필터 지우기
필터 지우기

Given an equation, i have to graph it in 3D and it should look like a water ripple

조회 수: 14 (최근 30일)
hi. i need help urgently. i was given an equation: z(x,y)=(amp*cos(sqrt((x^2+y^2)*const1))/exp((x^2+y^2)*const2)) amp is the amplitude which is 200 and x and y range from 0 to 100 const1 and const2 can be any number I am required to surf plot this equation so that it can look like a water ripple.
Please help me

채택된 답변

Paulo Silva
Paulo Silva 2011년 8월 28일
amp=200;
[x,y]=meshgrid(0:100,0:100);
const1=1;
const2=0.001;
z=(amp*cos(sqrt((x.^2+y.^2)*const1))./exp((x.^2+y.^2)*const2));
surf(x,y,z)
  댓글 수: 11
Paulo Silva
Paulo Silva 2011년 8월 28일
finally you might want some transparency on your water ripples, add this line to the end of the code: alpha(0.9) %the argument must be inside the interval [0 1]
12ar.af
12ar.af 2011년 8월 28일
Thanks....now it looks exactly as i wanted to be...much appreciated mate

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by