필터 지우기
필터 지우기

How to graph a f(x,y) function?

조회 수: 75 (최근 30일)
Kristopher
Kristopher 2014년 10월 7일
댓글: Damon Bernard 2022년 4월 12일
I took a Matlab course over the summer, and now have to graph a problem in calculus. I am rusty on my commands, so I'm not sure which one to use. I am trying to make a 3-d plot of a function f(x,y)=-(x^2-1)^2-(x^2y-x-1)^2. Do I have to open a function, or can I just use a command with a script?

답변 (3개)

Saikat Chakraborty
Saikat Chakraborty 2021년 5월 14일
syms x y
f(x,y)=-(x^2-1)^2-(x^2y-x-1)^2
ezplot(f)

José-Luis
José-Luis 2014년 10월 7일
편집: José-Luis 2014년 10월 7일
x_int = [0 1];
y_int = [0 1];
[X Y] = ndgrid(linspace(x_int(1),x_int(2),150),...
linspace(y_int(1),y_int(2),150));
myFun = @(x,y) (x.^2-1).^2-(x.^(2*y)-x-1).^2
mesh(X,Y,myFun(X,Y))

Azzi Abdelmalek
Azzi Abdelmalek 2014년 10월 7일
x=0:0.1:10;
y=0:0.1:10;
z=-(x.^2-1).^2-(x.^2*y-x-1).^2
plot3(x,y,z)

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by