Rotate any square matrix clockwise and anticlockwise in any degree of angle.
Project description
Rotate any square matrix clockwise and anticlockwise in any degree of angle.
matrix-rotation is a simple package for rotating elements of any square matrix in clockwise and anticlockwise direction. This rotation can be performed with any degree of angle or step size. This version is most suitable for small size matrix.
Use in python code
Following are some of the sample examples to show the use of matrix_rotation package. This package has a function named rotate_matrix which essentially takes input 2 dimensional square matrix as a first argument, degree as a second argument to determine the step size and default clockwise rotation as the final argument. print_rotate_matrix function is just the extension of rotate_matrix function which print the original matrix and rotated matrix on the console. Let's take a look.
>> from matrix_rotation import rotate_matrix, print_rotate_matrix
>>> matrix = [['a', 'b', 'c'],\
['h', 'i', 'd'],\
['g', 'f', 'e']]
>>> rotated_matrix = rotate_matrix(matrix, degree=2, clockwise=True)
>>> rotated_matrix
[['g', 'h', 'a'], ['f', 'i', 'b'], ['e', 'd', 'c']]
>>> rotated_matrix = print_rotate_matrix(matrix, degree=2, clockwise=True)
Original Matrix:
[['a', 'b', 'c'],
['h', 'i', 'd'],
['g', 'f', 'e']]
Clockwise Rotated Matrix with Degree = 2:
[['g', 'h', 'a'],
['f', 'i', 'b'],
['e', 'd', 'c']]
---------------------------------------------
>>> rotated_matrix
[['g', 'h', 'a'], ['f', 'i', 'b'], ['e', 'd', 'c']]
Use in command line interface (CLI)
matrix_rotation --help
Usage: matrix_rotation [OPTIONS]
Options:
-M, --matrix TEXT Use to show default examples of matrix rotation.
Otherwise use the input matrix from command
line. Input example : [["a", "b"],["d", "c"]]
-D, --degree INTEGER Degree of rotation. Can rotate matrix in between
0 degree to 360 degree. [default: (1)]
-C, --clockwise BOOLEAN Use True to rotate matrix in a clockwise
direction. False for rotation in anticlockwise
direction. [default: (True)]
-S, --print_matrix BOOLEAN Use True to show the result of Original and
Rotated Matrix. [default: (False)]
--help Show this message and exit.
For more information please visit GitHub
License
MIT License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file matrix_rotation-0.2.2.tar.gz.
File metadata
- Download URL: matrix_rotation-0.2.2.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e55969868928dea5c27671615cee60099606b4630ecfdbaafda7587de9e0d92b
|
|
| MD5 |
7f729c8a5881efd28758c75d8f942ab1
|
|
| BLAKE2b-256 |
868b521b80f1aeaa0b0e4899eab05133e5a750aed882dc2d01ca5e192949f406
|
File details
Details for the file matrix_rotation-0.2.2-py2.py3-none-any.whl.
File metadata
- Download URL: matrix_rotation-0.2.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61eb03710e2405788810f5c7c369ccb79c005204eb7df8ff4fa08a0ae0532473
|
|
| MD5 |
0117b412531ec1ac972311c9617e6dac
|
|
| BLAKE2b-256 |
8ae325d3c9111fee8b32e05304591c38dc07acb320c2abb08df105dd59efee5b
|