필터 지우기
필터 지우기

plotting functions over domain

조회 수: 70 (최근 30일)
lateef
lateef 2023년 3월 23일
편집: the cyclist 2023년 3월 23일
how would i go about doing this im constanly getting erros with my current code
Plot the function f (x, y) = (x^2 + 3y^2)e^1x^2-y^2
over the domain 1 x 1, 1 y 1.

채택된 답변

Matt J
Matt J 2023년 3월 23일
fsurf(@(x,y) (x.^2 + 3*y.^2).*exp(1 - x.^2 - y.^2), [-1,1],ShowContours='on');

추가 답변 (1개)

the cyclist
the cyclist 2023년 3월 23일
f = @(x,y) (x.^2 + 3*y.^2).*exp(1 - x.^2 - y.^2); % I'm not certain about your notation here
x = -1 : 0.05 : 1;
y = -1 : 0.05 : 1;
[xx,yy] = meshgrid(x,y);
figure
surf(xx,yy,f(xx,yy))
  댓글 수: 2
lateef
lateef 2023년 3월 23일
that code worked thanks if i was to add level curves how would i do that ? would i use the contour command or the meshgrid that used in the example ?
in a single graph, plot some level curves. (A good choice of levels might be c = 0, 0.5, 1, ..., 3.)
the cyclist
the cyclist 2023년 3월 23일
편집: the cyclist 2023년 3월 23일
Just realizing I did your homework for you

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

카테고리

Help CenterFile Exchange에서 Geology에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by