代码搜索:Python
找到约 10,000 项符合「Python」的源代码
代码结果 10,000
www.eeworm.com/read/139332/5802633
hpp type_id.hpp
// Copyright David Abrahams 2002.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef TY
www.eeworm.com/read/431748/8656795
pdf wiley.mobile.python.rapid.prototyping.of.applications.on.the.mobile.platform.dec.2007.pdf
www.eeworm.com/read/356019/10239132
chm text_processing_in_python_(addison_wesley-2003) [miex.org].chm
www.eeworm.com/read/457193/7332937
prc core python programming_wesley j. chunprentice hall ptr.prc
www.eeworm.com/read/366787/9798789
chm 《python中文手册 v2.4 chm版本》详细信息.chm
www.eeworm.com/read/291007/8445105
m kalman_intro.m
% Kalman filter example demo in Matlab
% This M code is modified from Andrew D. Straw's Python
% implementation of Kalman filter algorithm.
% The original code is here:
% http://www.scipy.org/Cookboo
www.eeworm.com/read/428326/8876074
py using_sys.py
#文件名:using_sys.py
import sys
print '命令行参数为:'
for i in sys.argv:
print i, '\n'
print '\n\nPYTHONPATH(Python的默认路径)为', sys.path, '\n'
www.eeworm.com/read/379730/9180047
readme
See run_varmod.py for details on how to run simulations.
The file artificial.pickle contains the data used in the artificial data
experiments reported in the ICA 2003 paper [1]. The MEG data used in
www.eeworm.com/read/177586/9446128
po piglatin.po
# BitTorrent
# Copyright (C) 2005, BitTorrent, Inc.
# This file is distributed under the same license as the BitTorrent package.
# Matt Chisholm, matt (dash) translations (at) bittorrent (dot) com, 20
www.eeworm.com/read/160583/10516695
py psd_demo.py
#!/usr/bin/env python
# python
from pylab import *
dt = 0.01
t = arange(0,10,dt)
nse = randn(len(t))
r = exp(-t/0.05)
cnse = conv(nse, r)*dt
cnse = cnse[:len(t)]
s = 0.1*sin(2*pi*t) + cnse
subplot