第3章 差分方程、滞后运算与动态模型3.1 一阶差分方程3.1.1 定义形式y_t=\alpha y_{t-1}+\varepsilon_t... 金融计量学 3年前 (2023-06-17) 2.1K 2 课程笔记
Ethics and Trustin the Investment ProfessionIntroduction to ethicsDefinition of ethicsOur decisio... CFAⅠEthical & Professional Standards 3年前 (2023-05-23) 2.1K 0 考证>CFAⅠ
Portfolio Management: An OverviewAsset Management Industry and Portfolio ApproachAspects of asset... CFAⅠPortfolio Management 3年前 (2023-05-16) 2.2K 0 考证>CFAⅠ
Categories,Characteristics, and Compensation Structures of Altermative InvestmentsCategories and ... CFAⅠAlternative Investments 3年前 (2023-05-04) 2.1K 0 考证>CFAⅠ
前言目前很多App采用了SSL Pinning技术,App只信任系统证书,不信任你安装的证书,因此通过简单的手机安... Charles抓包配置(绕过SSL Pinning) 3年前 (2023-05-02) 2.3K 0 编程>工具
Derivative Instrument and Derivative Market FeaturesDerivative InstrumentDefinition of derivative... CFAⅠDerivatives 3年前 (2023-05-01) 2.2K 0 考证>CFAⅠ
代码def extGCD(a, b): if b == 0: return 1, 0, a x, y, q = extGCD(b, a % b) x, y =... Python实现椭圆曲线基础运算 3年前 (2023-04-16) 1.9K 0 编程>小玩意