C++ 中的 QL 代码程序

发布于 2024-12-01 15:18:32 字数 270 浏览 1 评论 0原文

我想在我自己的 C++ 代码中包含用于选项希腊语计算的 QuantLib 函数。我的问题是我可以只包含这些功能吗...我不想使用他们其余的东西。我显然不能只写

QuantLib::europeanOption.delta()

我已经包含了标题,

#include <ql/quantlib.hpp> using namespace QuantLib;

我希望他们有一些好的文档。

I want to include the QuantLib function for option greeks calculations in my own C++ code. my question is can I just include those functions...I don't want to use the rest of their stuff. I obviously cannot just write

QuantLib::europeanOption.delta()

I have included the header

#include <ql/quantlib.hpp> using namespace QuantLib;

I wish they had some good documentation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-12-08 15:18:32

您对编程、动态链接、Makefile 和其他内容感到如何自在?

本质上,这里没有魔法。 QL 拥有非常自由的许可证,您“只需”设置您的项目,以便

  • 期间找到 quantlib 标头(以及 Boost 标头)
  • 在链接期间编译 quantlib 库

,并且这两个都可以通过调用 来自动化quantlib-config 分别带有适当的标志 --clags--libs

这与链接到任何其他外部库实际上没有什么不同。

How at ease are you with programming, dynamic linking, Makefiles and the rest?

In essence, there is no magic here. QL has a very liberal license, and you "merely" have to set up your project such that it finds

  • the quantlib headers (and hence Boost headers) during compilation
  • the quantlib library during linking

and both of those can be automated by calling quantlib-config with proper flags --clags and --libs, respectively.

This is really no different than linking to any other external library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文