包含标签:线性代数 的文章
-
-
-
-
python 线性代数
利用python进行线性代数的运算 pandas 专门用于数据挖掘的开源python库 以Numpy为基础,借力Numpy模块在计算方面性能高的优势 基于matplotlib,能够简便的…… -
2022数学建模国赛C题详细思路:基于随机森林和灰色关联度分析
2022数学建模国赛C题 古代玻璃制品的成分分析与鉴别,已经写出完整思路和代码见文末 subplot(1,2,2); bar(sortW); xlim([0 c+1]); % 设置x轴范围 xlabel('…… -
-
-
同态加密: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={……