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)
归档
标签
去牛客网
登录
/
注册
938664978的博客
全部文章
/ 未归档
(共5篇)
基本Turtle语句
import turtle turtle.showturtle() turtle.write("Welcome to Python") turtle.forward(100) turtle.backward(100) turtle.color('red') turtle.penu...
2020-07-14
0
573
Simple Python Built-in Functions
>>>ord('a') - ord('A') 32 >>>chr(98) 'b' #chr(code ) function return the character represent by the code >>> str(98...
2020-07-14
0
597
homework of numerical solution of PDEs
Problem set find the numerical solution of the following partial differential equation: 1.C - N Scheme %二阶波动方程的CN格式 A=[0,-1;-1,0;]; I=[1,0;0,...
2020-07-14
0
650
SOR
MODULE Global_data !Symbolic names for kind types of single- and double-precision reals: INTEGER, PARAMETER :: SP = KIND(1.0) INTEGER, PARAMET...
2020-07-14
0
461
[cv]Fourier-transform
Basis Sets 生成向量空间V的最小基向量集合。 image can be regarded as an 1D vector. sin signal Asin(wx+ψ) 三个自由度, A,w, ψ . time a...
2020-07-13
0
499