필터 지우기
필터 지우기

Graphing a two variable limit

조회 수: 1 (최근 30일)
Stephen
Stephen 2022년 10월 6일
댓글: Chunru 2022년 10월 7일
Hi, I am new to MATLAB and I can't seem to figure out how to graph a two variable limit like:
I've seen answers on how to create a two-variable function, or how check the limit for continuity, but I hope to see it graphed in relation to . I have gotten errors saying that the function is too complex, or that Z must be a matrix, and I have no clue how I should handle those kinds of errors.
Thanks in advance for any help that is given!
  댓글 수: 1
Torsten
Torsten 2022년 10월 7일
편집: Torsten 2022년 10월 7일
What do you want to graph here ? The function is defined and continuous at (0,1) with value (acos(0))/1 = pi/2.

댓글을 달려면 로그인하십시오.

채택된 답변

Chunru
Chunru 2022년 10월 7일
x= -0.5:.01:0.5;
y = 0.5:.01:1.5;
[xx, yy] = meshgrid(x, y);
zz = acos(xx./yy)./(1+xx.*yy);
%zz = nan(size(xx));
% idx = abs(xx./yy)<=1;
% zz(idx) = acos(xx(idx)./yy(idx))./(1+xx(idx).*yy(idx));
% whos
contourf(xx, yy, zz);
hold on
plot(0, 1, 'rd')
  댓글 수: 4
Stephen
Stephen 2022년 10월 7일
I understand that, I was just asking the wrong question originally and got the correct answer anyways, which is my fault on my part. Thank you both for the help anyways, sorry about the confusion!
Chunru
Chunru 2022년 10월 7일
The comment-out code above is good when acos become complex.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by