필터 지우기
필터 지우기

x-axis and y- axis problem

조회 수: 3 (최근 30일)
Avinash Tallapaneni
Avinash Tallapaneni 2016년 12월 14일
편집: Adam 2016년 12월 14일
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

채택된 답변

Adam
Adam 2016년 12월 14일
편집: Adam 2016년 12월 14일
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.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by