包含标签:线性代数 的文章
-
同态加密:CKKS方案简介及一个python实现:TENSEAL(不定期更新)
部分资料来自于HEAAN作者的个人主页:https://yongsoosong.github.io/files/slides/intro_to_CKKS.pdf 0x01 同态加密的CKKS方案简介 CKKS是2017年提出的同…… -
《Machine Learning Fundamentals》Class Notes — Chapter Two Regression(待补)
Introduction Linear regression attempts to get a function g that can use the attributes of the input to predict the resulting output. g…… -
数据分析与预测(三)——散点图的绘制
一、二维散点图的绘制 1.采用pandas.plotting.scatter_matrix函数绘制 pd.plotting.scatter_matrix(iris_data, figsize=(10, 10), alpha=1, hist_kwds={…… -
-
-
【Matplotlib】pyplot的高级功能
添加图例与注释 给图形添加图例 代码 import numpy as np import matplotlib.pyplot as plt nbSamples = 128 x = np.linspace(-np.pi, np.pi, nbSamples)…… -
python求解整数线性规划
cvxpy求解 比如我们求解这样的一个问题: 我们需要配置基本的环境,首先记得按顺序安装模块: pip install numpy pip install mkl pip install cvxopt …… -
-
-
期权定价模型之Heston模型–参数校准与定价【附python代码】
Heston模型的校准与定价 前言 在本栏目的文章中,已经介绍了期权定价的数值方法(CRR、MCS等)、经典的BS模型、Merton跳跃扩散模型等经典模型,接下来,在……