由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Quant版 - 如何在c++里存储lattice
相关主题
Risk Neutral probability那位大侠能推荐一个简单易用的 C++ Software/Compiler吗?
请各位高人帮忙看看这几门课应该选啥?问个概率题目
Some interview questions (zz from Wilmott)考虑做quant - 请版上达人看看我的背景
哪里有专讲binomial tree定价方法的学习资料?想转行,真诚求建议
Learning C++ to enhance Quant skills, any good online tutorials oor books?[合集] 一个关于simulation 的小问题
求:Financial Instrument Pricing Using C++ 的附书CD[合集] 请问Asset Pricing方面Duffie的书怎么样?
[合集] 这几本金融编程的书,哪个适合初学者?请问,怎么用c/c++ 解决PDE里面的方程
转让金融数学书如何replicate一个binary option?
相关话题的讨论汇总
话题: vector话题: c++话题: lattice话题: model话题: binomial
进入Quant版参与讨论
1 (共1页)
D*********Y
发帖数: 3382
1
我想做个binomial model。要建立一个lattice class。
我现在想的是放在matrix里面,row和column来表示node的位置。这样的话就有很多
element是空的。我觉得好似不efficient。
请教一下该如何在c++里面处理这个数据结构呢?
谢谢!
k*******d
发帖数: 1340
2
If it is a simple binomial model, a vector is enough, you do not need a 2-D
storage just update it backwards.
If it is a more complicated model, then it depends on the model, I guess.
Maybe flatten to a 1D vector, maybe vector of vectors of different sizes.
Note, there is no "matrix" in C++
D*********Y
发帖数: 3382
3
哦,我以为2D的array是matrix,原来不是啊?是不是因为不支持matrix运算?
什么叫“just update it backwards.”?

-D

【在 k*******d 的大作中提到】
: If it is a simple binomial model, a vector is enough, you do not need a 2-D
: storage just update it backwards.
: If it is a more complicated model, then it depends on the model, I guess.
: Maybe flatten to a 1D vector, maybe vector of vectors of different sizes.
: Note, there is no "matrix" in C++

k*******d
发帖数: 1340
4
什么是2D array? C++标准里面没有这个东西。 如果是vector >, 里面的
vector的长度是可以不一样的,same for T**.
Binomial tree运算过程从后向前,算过的不需要保留到最后

【在 D*********Y 的大作中提到】
: 哦,我以为2D的array是matrix,原来不是啊?是不是因为不支持matrix运算?
: 什么叫“just update it backwards.”?
:
: -D

D*********Y
发帖数: 3382
5
比如说int arrayname[2][4]. 这算啥?

【在 k*******d 的大作中提到】
: 什么是2D array? C++标准里面没有这个东西。 如果是vector >, 里面的
: vector的长度是可以不一样的,same for T**.
: Binomial tree运算过程从后向前,算过的不需要保留到最后

k*******d
发帖数: 1340
6
hmm.....这的确是C的2D array,不过实际中基本不用,我都忘了C里面还有这东西了

【在 D*********Y 的大作中提到】
: 比如说int arrayname[2][4]. 这算啥?
D*********Y
发帖数: 3382
7
嗯,觉得可能是vector of vector的结构。俺去研究研究。
看的是duffy的书,可是买的书没有带CD。没有source code。很多都要自己修补。看能
不能补起来。

【在 k*******d 的大作中提到】
: 什么是2D array? C++标准里面没有这个东西。 如果是vector >, 里面的
: vector的长度是可以不一样的,same for T**.
: Binomial tree运算过程从后向前,算过的不需要保留到最后

d********d
发帖数: 57
8
vector of vector
1 (共1页)
进入Quant版参与讨论
相关主题
如何replicate一个binary option?Learning C++ to enhance Quant skills, any good online tutorials oor books?
关于American put option的几个问题.求:Financial Instrument Pricing Using C++ 的附书CD
一道题(math)[合集] 这几本金融编程的书,哪个适合初学者?
[合集] 请教一个概率题转让金融数学书
Risk Neutral probability那位大侠能推荐一个简单易用的 C++ Software/Compiler吗?
请各位高人帮忙看看这几门课应该选啥?问个概率题目
Some interview questions (zz from Wilmott)考虑做quant - 请版上达人看看我的背景
哪里有专讲binomial tree定价方法的学习资料?想转行,真诚求建议
相关话题的讨论汇总
话题: vector话题: c++话题: lattice话题: model话题: binomial