我不明白编译此代码时产生的错误,该代码不起作用(基于 Franck Pastor 的想法两条曲线之间的面积
beginfig(1);
interim linejoin := mitered;
interim ahangle := 30;
numeric u, pi, a, b;
pi = 3.141592653589793;
u = 1.5cm;
vardef graph_of_function (suffix f) (expr xmin, xmax, xsep) =
for x = xmin step xsep until xmax: (x, f(x)) .. endfor (xmax, f(xmax))
enddef ;
vardef vline (suffix f, g) (expr x) = (x, min(f(x), g(x))) -- (x, max(f(x),g(x)))
enddef;
vardef area_between_functions (suffix f, g)(expr a, b, xsep) =
buildcycle(graph_of_function(f, a, b, xsep), vline(f, g, b),
reverse graph_of_function(g, a, b, xsep), reverse vline(f, g, a))
enddef;
xmin :=-pi/2; xmax := 3*pi/2;
ymin :=-1.5; ymax := 5;
vardef f(expr x)= exp(-x)*(-cos(x)+sin(x)+1) enddef;
vardef g(expr x)=-exp(-x)*cos(x) enddef;
path C_f, C_g;
C_f = graph_of_function(f,xmin,xmax,0.01);
C_g = graph_of_function(g,xmin,xmax,0.01);
a = xpart(C_f intersectionpoint C_g);
b = xpart(reverse C_f intersectionpoint reverse C_g);
fill (area_between_functions(f, g, a, b, 0.1)) scaled u withcolor 0.4[white, blue];
draw C_f scaled u withcolor blue;
draw C_g scaled u withcolor blue;
endfig;
这是控制台输出
MPtoPDF 1.4.1 : running 'mpost --mem=mpost logo.mp'
This is MetaPost, version 2.10 (TeX Live 2024) (kpathsea version 6.4.0)
(/home/fabrice/texlive/2024/texmf-dist/metapost/base/mpost.mp
(/home/fabrice/texlive/2024/texmf-dist/metapost/base/plain.mp
Preloading the plain mem file, version 1.005) ) (./logo.mp
>> exp
! Isolated expression.
<to be read again>
(
f->begingroup.exp(
-(EXPR2))*(-cos((EXPR2))+sin((EXPR2))+1)endgroup
<for(-1.5708)> ((EXPR0),f((EXPR0))
).. ENDFOR
graph_of_function->...R4):(x,(SUFFIX2)(x))..endfor
((EXPR4),(SUFFIX2)((EXPR4)...
l.33 C_f = graph_of_function(f,xmin,xmax,0.01)
;
[...]
Transcript written on logo.log.
MPtoPDF 1.4.1 : error while processing mp file
答案1
请链接到您正在使用的代码源。名字很好,但如果您附上链接,回答这个问题会容易得多。我现在也可以给您更好的解释,因为我可以具体指出您遗漏的上下文。
如果没有这些信息,只需使用
mpost --mem=metafun --numbersystem=double <filename>.mp
我会发布一张图片,但最新的 Okular-on-X 产生的输出会让读者永远不再使用 MetaPost,这是最不公平的。
我用了Franck Pastor 的回答但我不知道原帖者是否使用了这种方法。我猜想metafun
这种方法在这里是有效的。double
只是将精度提高了一倍。