Area in a function
显示 更早的评论
Im trying to fill the area under a function but I dont know how to exactly do it, I want to plot the area between [-1, 1]
syms f(x)
f=1-x^4
t=0
I=int(f)
Area=subs(I,1)-subs(I,-1)
fplot(f,[-1,1])
hold on
fplot(t,'b')
回答(1 个)
David Hill
2022-1-26
x=-1:.001:1;
f=1-x.^4;
g=zeros(size(x));
plot(x,g,x,f);
x2 = [x, fliplr(x)];
inBetween = [g, fliplr(f)];
fill(x2, inBetween, 'g');
类别
在 帮助中心 和 File Exchange 中查找有关 Calculus 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
