高级编程技术
文章平均质量分 59
sysueric
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Numpy Exercise
Numpy Exercise Generate matrices A, with random Gaussian entries, B, a Toeplitz matrix, where A ∈ Rn×m and B ∈ Rm×m, for n = 200, m = 500. Exercise 9.1: Matrix operations Calculate A + A, AA⊤, A⊤...原创 2018-05-22 00:47:13 · 315 阅读 · 0 评论 -
Matplotlib Exercise
11 Matplotlib Exercise 11.1: Plotting a function Plot the function f(x) = sin^2(x − 2)e^2 over the interval [0, 2]. Add proper axis labels, a title, etc. Solution import numpy as np import...原创 2018-05-27 16:51:36 · 343 阅读 · 0 评论 -
Scipy Exercise
10 Scipy Exercise 10.1: Least squares Solution import numpy as np import scipy.linalg as lig m = 10 n = 5 A = np.random.random((m, n)) b = np.random.random(m) x = lig.lstsq(A, b)[0] norm = n...原创 2018-06-05 19:52:04 · 248 阅读 · 0 评论 -
Pandas & Statsmodels - Jupyter
Pandas & Statsmodels Anscombe’s quartet import random import numpy as np import scipy as sp import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import statsmodels.api...原创 2018-06-13 10:45:48 · 752 阅读 · 0 评论 -
Scikit-Learn
Scikit-Learn Assignment In the second ML assignment you have to compare the performance of three different classification algorithms, namely Naive Bayes, SVM, and Random Forest. For this assignment...原创 2018-06-19 20:26:22 · 259 阅读 · 0 评论
分享