openGPMP
Open Source Mathematics Package
pygpmp
linalg
__init__.py
Go to the documentation of this file.
1
"""
2
/*************************************************************************
3
*
4
* Project
5
* __ __ _______ _____ _ __
6
* | \/ |__ __| __ \| |/ /
7
* ___ _ __ ___ _ __ | \ / | | | | |__) | ' /
8
* / _ \| '_ \ / _ \ '_ \| |\/| | | | | ___/| <
9
*| (_) | |_) | __/ | | | | | | | | | | | . \
10
* \___/| .__/ \___|_| |_|_| |_| |_| |_| |_|\_\
11
* | |
12
* |_|
13
*
14
*
15
* Copyright (C) Akiel Aries, <akiel@akiel.org>, et al.
16
*
17
* This software is licensed as described in the file LICENSE, which
18
* you should have received as part of this distribution. The terms
19
* among other details are referenced in the official documentation
20
* seen here : https://akielaries.github.io/openGPMP/ along with
21
* important files seen in this project.
22
*
23
* You may opt to use, copy, modify, merge, publish, distribute
24
* and/or sell copies of the Software, and permit persons to whom
25
* the Software is furnished to do so, under the terms of the
26
* LICENSE file. As this is an Open Source effort, all implementations
27
* must be of the same methodology.
28
*
29
*
30
*
31
* This software is distributed on an AS IS basis, WITHOUT
32
* WARRANTY OF ANY KIND, either express or implied.
33
*
34
************************************************************************/
35
36
openGPMP Linear Algebra Module
37
==============================
38
USAGE :
39
>> import pygpmp
40
>> # create matrix of 3,4 size
41
>> mtx = pygpmp.linalg.Matrix(3, 4)
42
OR
43
>> from pygpmp import linalg
44
"""
45
46
from
pygpmp.linalg.linalg
import
(
47
Mtx,
48
)
49
50
__all__: list[str]
51
__path__: list[str]
pygpmp.linalg.linalg
Definition:
linalg.py:1
Generated by
1.9.1