朴实萝莉

文章
7
资源
0
加入时间
3年0月8天

Datacamp 笔记&代码 Supervised Learning with scikit-learn 第二章 RegressionImporting data for supervised learningExploring the Gapminder dataFit & predict for regressionTrain/test split for regression5-fold cross-validationK-Fold CV comparisonRegularization

更多原始数据文档和JupyterNotebookGithub: https://github.com/JinnyR/Datacamp_DataScienceTrack_PythonDatacamp track: Data Scientist with Python - Course 21 (2)ExerciseImporting data for supervised learningI...

argoverse-api安装

https://github.com/argoai/argoverse-api这里的安装只遇到一个问题No matching distribution found for pyntcloud解决: 将pip回退到18.1 pip install pip==18.1然后,pip install -e /path_to_root_directory_of_the_repo/ --process-dependency-links...

STM32Cubemx ADC配置详解标题STM32Cubemx ADC配置详解

标题STM32Cubemx ADC配置详解ADC独立模式所谓独立模式,在一个管脚上只有一个ADC采集该管脚的电压。ADC双重模式所谓两重模式,就是ADC1_IN0,ADC2_IN0在同一管脚上,采集的是同一管脚上的电压。ADC三重模式所谓三重模式,ADC1_IN0,ADC2_IN0,ADC3_IN0在同一管脚上,采集的是同一管脚上的电压。 Parameter Setti...

如何用matlab进行部分式展开_[转载]用MATLAB进行部分分式展开

为了方便LAPLACE反变换,先对F(s)进行部分分式展开。根据F(s)分为具有不同极点的部分分式展开和具有多重极点的部分分式展开。分别讨论。不同极点的部分分式展开:F(s)=B(s)/A(s)=num/den=(b0*s^n+b1*s^(n-1)+...+bn)/(s^n+a1*s^(n-1)+...an)在matlab行向量中,num和den分别表示传递函数分子和分母的系数num=[b0 b1...