Thread: Matrix Help

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    Have you started, gotten anywhere at all? Any attempt is better than no attempt. The instructions look pretty detailed . . . .
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

  2. #2
    Registered User
    Join Date
    Mar 2008
    Posts
    15
    Quote Originally Posted by dwks View Post
    Have you started, gotten anywhere at all? Any attempt is better than no attempt. The instructions look pretty detailed . . . .
    #include <stdio.h>

    int i;
    int j;
    int select;
    double A[5][5];
    double B[5][5];
    double C[5][5];
    int columnsA = 3;
    int rowsA = 3;

    now I want to display a 3x3 matrix, but have no clue how.

  3. #3
    Kernel hacker
    Join Date
    Jul 2007
    Location
    Farncombe, Surrey, England
    Posts
    15,677
    And posting many copies of the same subject is a good way of upsetting the moderators, not a good way to get an answer.

    Post your code so far, whatever it is, and we can help you get the next step done - but if you don't try yourself, you will not learn, and that's what we want you to do - not just learn how to ask someone else to do it for you - that's the management course, not the programming course ;-).

    --
    Mats
    Compilers can produce warnings - make the compiler programmers happy: Use them!
    Please don't PM me for help - and no, I don't do help over instant messengers.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C - access violation
    By uber in forum C Programming
    Replies: 2
    Last Post: 07-08-2009, 01:30 PM
  2. Gauss-Jordan Matrix Inversion in C++
    By Max_Power82 in forum C++ Programming
    Replies: 3
    Last Post: 12-03-2006, 08:31 PM
  3. Matrix and vector operations on computers
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 05-11-2004, 06:36 AM
  4. Matrix Reloaded Questions (SPOILERS_
    By Xei in forum A Brief History of Cprogramming.com
    Replies: 73
    Last Post: 10-19-2003, 02:21 PM