An awesome tool for indexing matrices. propose a new concept “single index” (as in matlab) to index the elements from matrices. exchange python-style index(begin with 0) with matlab-style index(begin with 1)
Project description
Introduction
Abstract
An awesome tool for indexing matrices. propose a new concept “single index” (as in matlab) to index the elements from matrices. exchange python-style index(begin with 0) with matlab-style index(begin with 1)
Keywords
Index, Matrix, Single Index, Style of Index
New feature:
fix some bugs
Feature:
propose single index
change to (back from) matlab-style index
arithmetic of the index
Content
Classes:
SingleIndex: wrapper of int, list, slice Index: array of SingleIndex
Interface:
Arith: arithmetic of index
function:
irange: interval-like index
Grammar
Basic grammar
import:
import pindex # python for index
Example:
ind = SingleIndex([1,2,3]) # construct a single index
s = ind('helloworld') # index(array) == array[index]
print(s)
A = np.array([[1,2,6],[3,4,5]])
B = ind(A)
print(B) # index matrix with single index as in matlab
ind.py2matlab() # change to matlab style
s = ind('helloworld')
print(s) # output: hel
ind = Index([1,2,3]) # for 1dim array, Index == SingleIndex
ss = ind('helloworld')
print(ss)
ind = Index(([1,2],[3,4])) # construct multi-index
try:
ss = ind(['hello', 'world'])
print(ss)
except:
ind.py2matlab()
ss = ind(['hello', 'world'])
print(ss)
Attention:
ind = SingleIndex([1,2,3]) A = [[1,2,6],[3,4,5]] B = ind(A) # pindex.py thinks A is a list (of lists, with length 2) instead of matrix ind = Index(([0,1],[0,1])) # this is ok, since you use multi-index
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pindex-0.5.1.tar.gz.
File metadata
- Download URL: pindex-0.5.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9f30b6603f982e5739f14afb8e0a15f448d505081c51387d335b402c5d77241
|
|
| MD5 |
86d44298907e6fd26c3c514966352bd3
|
|
| BLAKE2b-256 |
ec9cbad05f469f68617a500e17c20eea99835552506c1ce50ca24fee2a3c0b3a
|