Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
matrix convert
#3
def reshape(src, rows):
    columns = len(src) // rows
    return [src[c*rows-r] for r in range(1,rows+1) for c in range(1,columns+1)]

x = list(range(1, 378))
y = reshape(x, 13)
abbaszandi likes this post
Reply


Messages In This Thread
matrix convert - by abbaszandi - Nov-13-2020, 10:13 AM
RE: matrix convert - by Larz60+ - Nov-13-2020, 05:15 PM
RE: matrix convert - by deanhystad - Nov-13-2020, 08:19 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Check if two matrix are equal and of not add the matrix to the list quest 3 893 Jul-10-2023, 02:41 AM
Last Post: deanhystad
  How to multiply a matrix with herself, until the zero matrix results peanutbutterandjelly 3 3,416 May-03-2021, 06:30 AM
Last Post: Gribouillis
  matrix from matrix python numpy array shei7141 1 3,747 Jan-16-2017, 06:10 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020