代码搜索:numpy

找到约 50 项符合「numpy」的源代码

代码结果 50
www.eeworm.com/read/203067/15365826

m4 numpy.m4

dnl ###################################################################### dnl dnl Check for Numeric Python dnl dnl ###################################################################### if test -n "
www.eeworm.com/read/203062/15366391

m4 numpy.m4

dnl ###################################################################### dnl dnl Check for Numeric Python dnl dnl ###################################################################### if test -n "
www.eeworm.com/read/483607/6599482

txt todo.txt

vor Release auf reservoir computing liste: - bsp vom d+s paper dazutun zu examples - beschreibung wie man die library kompiliert bzw flens halt - auch wo die examples, tests usw. sind gscheit beschre
www.eeworm.com/read/118181/14883664

htm a8743.htm

PyQwt: Python Bindings for Qwt
www.eeworm.com/read/291007/8445108

m kalman00.m

%Kalman filter example demo in Python % A Python implementation of the example given in pages 11-15 of "An %Introduction to the Kalman Filter" by Greg Welch and Gary Bishop, % University of North
www.eeworm.com/read/379729/9180203

py setup.py

# -*- coding: iso-8859-1 -*- from distutils.core import setup, Extension from distutils.cmd import Command from distutils.command.build import build import string, os, sys INCLUDE_DIRS = [] try:
www.eeworm.com/read/292866/8328427

py mpi_kmeans.py

#!/usr/bin/python # Wrapper for the MPI-Kmeans library by Peter Gehler from ctypes import c_int, c_double, c_uint from numpy.ctypeslib import ndpointer import numpy as N from numpy import empty,arra
www.eeworm.com/read/239567/4597735

py testellipsis.py

import numpy print numpy.__version__ a = numpy.array(([0, 1], [1, 3])) print a[..., 1] print a[..., ...]
www.eeworm.com/read/296686/8081496

py floatcanvas.py

#!/usr/bin/env python try: import numpy as N import numpy.random as RandomArray haveNumpy = True #print "Using numpy, version:", N.__version__ except ImportError: