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