Basic Linear Algebra Matrix

Basic Linear Algebra Matrix 1.1

Basic Linear Algebra Matrix 1.1 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 624
  • Released: Jun 7, 2007

Basic Linear Algebra Matrix 1.1 Description

This script defines the Matrix class, an implementation of a linear algebra matrix. Arithmetic operations, trace, determinant, and minors are defined for it.

This is a lightweight alternative to a numerical Python package for people who need to do basic linear algebra. Vectors are implemented as 1xN and Nx1 matricies. There is no separate vector class. This implementation enforces the distinction between row and column vectors.


Basic Linear Algebra Matrix 1.1 Keywords

Basic Linear Algebra Matrix Bookmark

Hyperlink code:
Hyperlink for Forum code:

Basic Linear Algebra Matrix 1.1 Script Download Notice

Top 4 Download periodically updates information of Basic Linear Algebra Matrix 1.1 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Basic Linear Algebra Matrix 1.1 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Matrix vector multiplication

... 'reduce' and 'map', this code shows how a matrix vector multiplication can be reduced to a single loop. ...
Python

z matrix

This module provides two classes that emulate one and two dimentional lists with fixed sizes but mutable internals. Their primary purpose is to be used as a building tool for classes that need storage structures that cannot change in size. ...
Python

Function composition

This script contains two classes that show two styles of function composition. The difference is only when the second function (g) returns a tuple. compose function passes the results of g as a tuple, mcompose treats it as a tuple of args to pass along. Note that extra args provided to (m)compose are treated ...
Python

Functional dictionary and list types

... and list type that can aid in relational algebra, functional programming, list-oriented programming, and perhaps even code obfuscation. ...
Python

unzip

unzip script defines a function that represents the opposite of the zip function used for strings operations. As an alternative you could use the function call zip(zip()). ...
Python