Python Forum
Numpy Play with Rows and Columns of a Matix
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Numpy Play with Rows and Columns of a Matix
#7
(Nov-05-2020, 08:47 PM)deanhystad Wrote: Don't PM. This all works better when everyone can participate.

Was the problem with transpose that m and m.T reference the same array? If that is a problem, use copy().
import numpy as np

m = []
rows = 64
cols = 64
for r in range(rows):
    m.append([r*cols+c for c in range(cols)])

m = np.array(m)
mT = m.T.copy()  # Get a copy
mT[1][1] = 0
print(mT - m.T)

Hello
Thanks for the answer but the problem is that I cannot bring together 64*1 matrices for creating 64*64 matrix. And I have 64*1 matrices but when I add these 64*1 matrices they are becoming 1*64 matrices and this is very weird By the way I already pasted my code. I didnt understand your example.
Reply


Messages In This Thread
RE: Numpy Play with Rows and Columns of a Matix - by quest - Nov-05-2020, 09:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Converting a json file to a dataframe with rows and columns eyavuz21 13 4,522 Jan-29-2023, 03:59 PM
Last Post: eyavuz21
  How to properly format rows and columns in excel data from parsed .txt blocks jh67 7 1,891 Dec-12-2022, 08:22 PM
Last Post: jh67
  Check DataFrames with different sorting in columns and rows Foxyskippy 0 782 Nov-19-2022, 07:49 AM
Last Post: Foxyskippy
  How can I send a .mp3 to play through my mic? ejected 20 20,305 Sep-01-2022, 02:38 AM
Last Post: victormayer
  The code I have written removes the desired number of rows, but wrong rows Jdesi1983 0 1,636 Dec-08-2021, 04:42 AM
Last Post: Jdesi1983
  making variables in my columns and rows in python kronhamilton 2 1,630 Oct-31-2021, 10:38 AM
Last Post: snippsat
  rows from sql query need to write to a file as columns sjcsvatt 6 2,409 Oct-09-2021, 12:45 AM
Last Post: snippsat
  Merging spreadsheets with the same columns and extracting rows with matching entries johnbernard 3 9,890 Aug-19-2021, 03:08 PM
Last Post: johnbernard
  Summing up rows and columns plumberpy 3 2,285 Aug-18-2021, 05:46 AM
Last Post: naughtyCat
  Play the next music in a list Pymax 0 1,219 Jul-28-2021, 07:27 PM
Last Post: Pymax

Forum Jump:

User Panel Messages

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