필터 지우기
필터 지우기

how to plot multi variable function

조회 수: 136 (최근 30일)
uzmeed
uzmeed 2018년 5월 18일
답변: Francis Moses Obinna 2022년 2월 10일
How can i plot this multi variable function t=@(x,y)(x^2-2*x-x*y+2*y^2); regards

답변 (2개)

Ameer Hamza
Ameer Hamza 2018년 5월 18일
You will get a surface or a contour in this case. For example,
t=@(x,y)(x.^2-2*x-x.*y+2*y.^2);
x = -10:0.1:10; % define range and mesh of x and y which will be shown in figure
y = -10:0.1:10;
[X, Y] = meshgrid(x, y);
surf(X, Y, t(X,Y));
figure;
contourf(X, Y, t(X,Y));

Francis Moses Obinna
Francis Moses Obinna 2022년 2월 10일
t = 0:pi/50:10*pi; %% % Calculate sine for each value in t. st = sin(t); %% % Calculate cosine for each value in t. ct = cos(t); %% % Use the 'plot3' function to display a three-dimensional plot of a set of data points. figure; plot3(st, ct, t) xlabel('sin(t)') ylabel('cos(t)')

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by