Making a horizontal region between two functions

조회 수: 2 (최근 30일)
Ibraheem
Ibraheem 2022년 11월 4일
편집: Torsten 2022년 11월 5일
How do i fix this, my region is showing on the wrong part of the fuction, but i want it on the other part. can i get help
f = @(x) x.^3;
ivf = @(y) y.^(1/3);
g = @(x)x-x;
ivg = @(y) y-y;
a = 0;
b =1;
fplot(f, [a, b]), hold on
fplot(g, [a, b], 'LineWidth',2)
ycoord = linspace(a, b, 20);
xcoord = [ivf(ycoord); ivg(ycoord)];
plot(xcoord, [ycoord;ycoord]), hold off
thanks

답변 (1개)

Torsten
Torsten 2022년 11월 4일
편집: Torsten 2022년 11월 5일
f = @(x) x.^3;
g = @(x) x.^(1/3);
a = 0;
b = 1;
hold on
fplot(f,[a,b])
n = 20;
for i = 1:n+1
start = [g((i-1)/n*b),1];
ende = [(i-1)/n*b,(i-1)/n*b];
plot(start,ende,'r')
end
hold off
grid on

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by