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
#4
How about a question that provides enough information and detail that somebody could answer it?

What do you mean by this?
Quote:And here I want to write each column as a rows

Is this what you are looking for?
import numpy as np

m = np.array([[1,2,3,4], [4,6,7,8]])
print(m)
print(m.T) # or use np.transpose(m) or m.transpose()
Output:
[[1 2 3 4] [4 6 7 8]] [[1 4] [2 6] [3 7] [4 8]]
If that is what you want to do, what do you mean by this?
Quote:and after that I want to add them together.
The matrix in the first image isn't square (I don't think), so yow can you add an 8x64 matrix an a 64x8 matrix?

And how does any of this relate to the code you provide?
Reply


Messages In This Thread
RE: Numpy Play with Rows and Columns of a Matix - by deanhystad - Nov-05-2020, 07:55 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Converting a json file to a dataframe with rows and columns eyavuz21 13 4,727 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,958 Dec-12-2022, 08:22 PM
Last Post: jh67
  Check DataFrames with different sorting in columns and rows Foxyskippy 0 806 Nov-19-2022, 07:49 AM
Last Post: Foxyskippy
  How can I send a .mp3 to play through my mic? ejected 20 20,494 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,651 Dec-08-2021, 04:42 AM
Last Post: Jdesi1983
  making variables in my columns and rows in python kronhamilton 2 1,654 Oct-31-2021, 10:38 AM
Last Post: snippsat
  rows from sql query need to write to a file as columns sjcsvatt 6 2,470 Oct-09-2021, 12:45 AM
Last Post: snippsat
  Merging spreadsheets with the same columns and extracting rows with matching entries johnbernard 3 10,536 Aug-19-2021, 03:08 PM
Last Post: johnbernard
  Summing up rows and columns plumberpy 3 2,304 Aug-18-2021, 05:46 AM
Last Post: naughtyCat
  Play the next music in a list Pymax 0 1,230 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