필터 지우기
필터 지우기

Using verticalRegion, but no graph appears

조회 수: 2 (최근 30일)
Cassandra Meyer
Cassandra Meyer 2022년 4월 30일
댓글: Voss 2022년 5월 2일
I am trying to use verticalRegion, with x^2 and x from 0 to 1. In an attempt to use the code given by my textbook, it says this is an invalid use of the operator. It feels like there is small mistake, but I do not know what to change. Any help would be appreciated. Thanks!
function verticalRegion(x.^2, x, 0, 1)
fplot(f, [0, 1]), hold on
fplot(g, [0, 1], 'Linewidth', 2)
xcoord = linspace(0, 1, 20);
ycoord = [f(xcoord); g(xcoord)];
plot([xcoord;xcoord], ycoord), hold off
end

채택된 답변

Voss
Voss 2022년 4월 30일
Try it like this:
f = @(x)x.^2;
g = @(x)x;
% calling verticalRegion
verticalRegion(f, g, 0, 1)
% defining verticalRegion
function verticalRegion(f, g, xmin, xmax)
fplot(f, [xmin, xmax]), hold on
fplot(g, [xmin, xmax], 'Linewidth', 2)
xcoord = linspace(xmin, xmax, 20);
ycoord = [f(xcoord); g(xcoord)];
plot([xcoord;xcoord], ycoord), hold off
end
  댓글 수: 2
Cassandra Meyer
Cassandra Meyer 2022년 5월 2일
ohhh, great thank you so much!
Voss
Voss 2022년 5월 2일
You're welcome!

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by