Plotting Multivariable function poltting
47 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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)
0 Kommentare
Akzeptierte Antwort
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
0 Kommentare
Weitere Antworten (2)
Dirk Herschberger
am 17 Sep. 2020
[X,Y] = meshgrid(1:.2:10);
Z =(X*Y) / (X^2 + Y^2);
surf(X,Y,Z)
0 Kommentare
Siehe auch
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!