編譯錯誤:孤立表達式

編譯錯誤:孤立表達式

我不明白編譯此程式碼所產生的錯誤,該錯誤不起作用(基於 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,這是最不公平的。

我用了弗蘭克·帕斯特的回答但我不知道OP是否就是這樣使用的。我假設metafun是在這裡做工作。double只是精度加倍。

在此輸入影像描述

相關內容