Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コールドフュージョンの線形補間のための関数/式はありますか? cflib.org を調べてもうまくいきませんでした。
(y = y1 + [(y2 - y1) / (x2 - x1)]·(x - x1)
そう..
<cfset res = y = y1 + ((y2 - y1) / (x2 - x1)) * (x - x1)> <cfdump var="#res#">