Scientific/Engineering Python scripts - Top 4 Download

Scientific/Engineering Python script downloads

PyKanjiCard

PyKanjiCard is a flash card program to aid learning japanese written words, in hiragana, katakana and kanji.You can select words composed only by characters you already known. It is written in Python, using Pygtk. ...
Python

Mnemosyne

The Mnemosyne Project has two aspects: - It's a sophisticated free flash-card tool which optimises your learning process - It's a research project into the nature of long-term memory Efficient learning The Mnemosyne software resembles a traditional flash-card program to help you memorise question/answer pairs, but with an important ...
Python

Win32com Batch repathing of Autocad Xrefs

This script asks for a base directory and then changes all xrefs in all drawings in all subdirectories so that they use relative paths. To use it just copy it somewhere in your target directory structure and run. ...
Python

OpenMAD

The OpenMAD project aims to provide versatile software implementations of mathematical models based on the theory of differential games which simulate the long term effects of war. Newtonian physics is used to simulate conflicts in a virtual environment and provide detailed data during all stages of simulation. Requirements: · MySQL ...
Python

The Python Macromolecular Library

The Python Macromolecular Library (mmLib) is a software toolkit and library of routines for the analysis and manipulation of macromolecular structural models, implemented in the Python programming language. It is accessed via a layered, object-oriented application programming interface, and provides a range of useful software components for parsing mmCIF, and PDB ...
Python

Python Laboratory Operations Toolkit

This package is a loosely defined collection of tools for application of Python in a laboratory environment. It consists of pure python protocol drivers for various useful devices, including: National Instrument DSTP protocol to interface Python to LabVIEW VXI-11 protocol, to allow python to talk to a host of GPIB-like instruments ...
Python

MayaVi

MayaVi is a free, easy to use scientific data visualizer. It is written in Python and uses the amazing Visualization Toolkit (VTK) for the graphics. It provides a GUI written using Tkinter. Features - An easy to use GUI. - Can be imported as a Python module from other ...
Python

Povray for python

This script is a relatively simple framework for making povray files from python programming language. It's good for creating structured/mathematical scenes and animations. Why go out on a limb to use povray's SDL language when you can raytrace from the comfort of your favorite python chair?This framework uses all of python's ...
Python

NumExp

NumExp is a family of open-source applications for numerical computation.It is based on a server with the NumExp core functionalities. This server comunicates with potencial clients using a simple Corba interface. ...
Python

Pygsl

Pygsl provides a python interface for the GNU scientific library (gsl). The wrapper covers nearly everything GSL provides. ...
Python

RunningCalc

This is a trivial calculator "shell" with a running total.As trivial as it is, I find it to be more useful than a normal calculator when doing my checkbook because of the ever-present running total. ...
Python

Descriptive statistical analysis tool

This script is a Python module implementing a class which can be used for computing numerical statistics for a given data set.This recipe implements a descriptive statistical analysis class. It's intended to aid in computing numerical statistics for a given data set. It's well documented and hopefully useful. ...
Python

Factorial

This code gets factorial of a number and for negative numbers returns 1.The recursive implementation of factorial is easy but using lambda keyword of python it becomes a bit tough as we can't use conditional if else in lambda. If a user wants to return a factorial function on the fly ...
Python

Farey Sequence

This function provides farey sequence, F(n), for any integer n.There's probably a more elegant solution out there, but I couldn't find it. Note: it doesn't prepend (0,1) and append (1,1)... ...
Python

Accepting Four Points in 2 space

Photographic document images are often rotated, if only slightly. This code mediates an input of a series of four points--assumed to be the corners of a rectangular document--in any order, as mouse clicks.Then it determines the orientation of the points and calculates a "quality" value, as an indication to the user ...
Python

Wolfram style cellular automata

This is a little script that uses Python to generate the cellular automata that Wolfram discusses in his book "A New Kind of Scilfram disquot;.The script uses the Python Imaging Library to render the output, but you could replace this with text or any other method of visualization. ...
Python

Sparse

'sparse' is a matrix class based on a dictionary to store data using 2-element tuples (i,j) as keys (i is the row and j the column index). The common matrix operations such as 'dot' for the inner product, multiplication/division by a scalar, indexing/slicing, etc. are overloaded for convenience.When used in conjunction ...
Python

Fractal tree

This script could be used to compute and display a 2D fractal tree. A fractal tree is constructed iteratively by growing new branches, which have a specific length ratio with respect to the parent branch (scaling factor). The fan angle, the number of new branches and number of generations are user controlled. The ...
Python

Access Cairo surface from numpy and pygame

This script aliases the memory from a cairo surface so that you can manipulate the bits as a numpy array, or display/manipulate the image in pygame. ...
Python

NumPy

The fundamental package needed for scientific computing with Python is called NumPy.  This package contains: - a powerful N-dimensional array object - sophisticated (broadcasting) functions - basic linear algebra functions - basic Fourier transforms - sophisticated random number capabilities - tools for integrating Fortran code. Besides ...
Python