x-axis and y- axis problem

2 Ansichten (letzte 30 Tage)
Avinash Tallapaneni
Avinash Tallapaneni am 14 Dez. 2016
Bearbeitet: Adam am 14 Dez. 2016
this is the graph i got for this function and i need the graph from -8 to 10 for x and for y from -12 to 15 ,wat should i do?
f(x, y) = x^3+y^3-6*x*y;
figure(2)
ezplot(f)
grid on

Akzeptierte Antwort

Adam
Adam am 14 Dez. 2016
Bearbeitet: Adam am 14 Dez. 2016
doc xlim
doc ylim
xlim( hAxes, [-8 10] )
etc, for an axes handle hAxes. Or just
xlim( [-8 10] )
if you want to be sloppy.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with Curve Fitting Toolbox 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