Plotting Multivariable function poltting

47 Ansichten (letzte 30 Tage)
khagendra adhikari
khagendra adhikari am 3 Feb. 2019
Beantwortet: MORAM am 20 Okt. 2023
How can plot f(x,y)= xy/(x^2+y^2) if (x,y) (0,0) and 0 if (x,y)=(0,0)

Akzeptierte Antwort

Ege Keskin
Ege Keskin am 3 Feb. 2019
[X,Y] = meshgrid(1:.2:10);
Z =(X*Y) / (X^2 + Y^2);
surf(X,Y,Z)
You should avoid including 0 within the grid boundary since it creates a singularity.
Also read about;
https://www.mathworks.com/help/matlab/learn_matlab/plots.html

Weitere Antworten (2)

Dirk Herschberger
Dirk Herschberger am 17 Sep. 2020
[X,Y] = meshgrid(1:.2:10);
Z =(X*Y) / (X^2 + Y^2);
surf(X,Y,Z)

MORAM
MORAM am 20 Okt. 2023
[X,Y] = meshgrid(1:.2:10);
Z =(X*Y) / (X^2 + Y^2);
surf(X,Y,Z)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by