Commit 4aa2a91c authored by Kittipong Maneewong's avatar Kittipong Maneewong

Update mat.py

parent 51650f46
def sub(M, m, n, x, y):
import numpy as np
M=np.array(M)
print M[x:x+m,y:y+n]
print (M[x:x+m,y:y+n])
M = [
[3, 2, 1, 2],
[5, 4, 3, 3],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment