• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Transpose of a Matrix in C

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am a newbie to CPP. I have a question, while reading the topic Transpose of Matrix in C.
How can we do transpose of any N*M matrix in using C? I had been reading this resource, but I quite did not understood it still. Any simple example will definitely help me out
 
lowercase baba
Posts: 13091
67
Chrome Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The first steps are always the same, regardless of the language.  How would you do it by hand?  Can you explain it in English as if speaking to a child?

Until you can do those steps, don't even consider what programming language you want to use.
 
Bartender
Posts: 235
7
Android Python Oracle Postgres Database Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

fred rosenberger wrote:The first steps are always the same, regardless of the language.  How would you do it by hand?  Can you explain it in English as if speaking to a child?

Until you can do those steps, don't even consider what programming language you want to use.



A good starting point for getting the basic concept could be here Matrix Transpose in Wikipedia.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic