自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 问答 (12)
  • 收藏
  • 关注

原创 matplotlib作业

Exercise 11.1: Plotting a functionimport matplotlib.pyplot as pltfrom math import *import numpy as npdef function(x_list): return [pow(sin(x-2), 2) * exp(-1 * pow(x, 2)) for x in x_list]x ...

2018-05-28 16:35:13 439

原创 numpy作业

9.1,Matrix operations都是一些基本操作n = 200m = 500A = numpy.array([numpy.random.normal(0, 1, m) for _ in range(n)])B = scipy.linalg.toeplitz([1., -.25, *numpy.zeros(m-2)])# exercise 9.1print('\033[1;35...

2018-05-21 20:19:51 373

原创 leetcode #207

There are a total of n courses you have to take, labeled from 0 to n-1.Some courses may have prerequisites, for example to take course 0 you have to first take course 1, which is expressed as a pair: ...

2018-05-04 00:08:29 137

原创 leetcode #8

Pick OneImplement atoi which converts a string to an integer.The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting fr...

2018-05-01 21:28:05 122

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除