938664978
938664978
全部文章
分类
AI(18)
algorithm(18)
C(6)
computer-vision(15)
cuda(2)
database(1)
fortran(1)
hardware(3)
java(1)
leetcode(39)
MathModeling(19)
matlab(5)
other(8)
python(68)
robotics(13)
web-development(4)
未归档(5)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
(共226篇)
在Windows环境下安装numpy与scipy
在Windows环境下安装numpy与scipy 1. 安装python 在python.org网站下载所需要的python安装包 2. 安装pip与wheel pip 是python的包管理工具,很有必要安装。 下载get_pip.py文件下载地址 打开cmd,输入 python ge...
2020-07-14
0
660
What are some interesting things to do with Python?
sourece:http://www.quora.com/Python-programming-language-1/What-are-some-interesting-things-to-do-with-Python Python (programming language): What a...
2020-07-14
0
536
what-is-a-metaclass-in-python
source: http://stackoverflow.com/questions/100003/what-is-a-metaclass-in-python Classes as objects Before understanding metaclasses, you need to ma...
2020-07-14
0
486
用Python计算北京地铁的两站间最短换乘路线
用Python计算北京地铁的两站间最短换乘路线 地铁数据 地铁数据用字典表示: {station:{neighbor1:line number,neighbor2:line number,…},station2:{…},…} 现在我们有地铁的站名,下面就是如何将地铁站名转化为上面所需要的标准...
2020-07-14
1
2715
[笔记] 创建python中的字符串translator
将python中的字符串的某些字符转化为特定字符是经常用到string库中的maketrans()函数,以及translate()函数。 但是这两个函数比较抽象: maketrans函数产生的对象是一个表,这个数据结构对初学者并不友好。 tranlate(table, deleteValue)函数所...
2020-07-14
0
553
[笔记]python的os库
在terminal或是power shell下,可以直接在命令行输入操作系统提供的各种命令,比如,cd , .. , ls , diff , mkdir ,等等。 如果要在python中执行这些命令,就需要用到python标准库中的os库。 >>> import os &g...
2020-07-14
0
665
[AUTONAVx][lec3]3D Geometry and Sensors
3D Geometry Rotation matrices and quaternions can simply be concatenated by multiplication. Euler angles use three variables to describe three...
2020-07-14
0
482
[AUTONAVx][lec4] PID Control
1D PD control class UserCode: def __init__(self): # TODO: tune gains self.Kp = 1.4 self.Kd = 3.0 self.last_x = 0....
2020-07-14
0
583
[笔记]python的StringIO与BytesIO模块
StringIO StringIO就是在内存中读写字符串,要把字符串读入内存,要先创建StringIO实例,然后像写入文件一样,将字符串写入这个实例即可。 >>> from StringIO import StringIO >>> memory = Stri...
2020-07-14
0
536
[笔记]python数据结构之线性表:linkedlist链表,stack栈,queue队列
python数据结构之线性表 python内置了很多高级数据结构,list,dict,tuple,string,set等,在使用的时候十分舒心。但是,如果从一个初学者的角度利用python学习数据结构时,这些高级的数据结构可能给我们以迷惑。 比如,使用list实现queue的时候,入队...
2020-07-14
0
498
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页