Search:

Type: Posts; User: HelpmeMark

Search: Search took 0.02 seconds.

  1. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Help

    Help
  2. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Guy with the cat icon is helping me out. I gave...

    Guy with the cat icon is helping me out. I gave the portion on my code, but I don't completely understand what char z is. Is it a variable?
  3. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    void SetMatrix(double A[5][5], char z) {...

    void SetMatrix(double A[5][5], char z)
    {
    printf("Please enter matrix %c:\n", z);

    for(i=0; i<=rowA; i++)
    {
    for(j=0; j<=columnA; j++)
    {
    ...
  4. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    TRust me I'm in lab right now trying to work on...

    TRust me I'm in lab right now trying to work on it, but the TA only gives vague answers. Well thanks for the help :) Can I have a title?
  5. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Can I be a mod?

    Can I be a mod?
  6. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    :( I'm so screwed this week.

    :( I'm so screwed this week.
  7. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    int M[3][3] = {{1, 0,0}, {0, 1,0}, {0, 0,1}};...

    int M[3][3] = {{1, 0,0},
    {0, 1,0},
    {0, 0,1}};
    int i, j;
    for(i=0; i<3; i++)
    { for(j=0; j<3; j++)
    { printf(“&#37;d ”,
    M[i][j]);
    }
  8. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Nah I tried spent 2 days on it I have...

    Nah
    I tried
    spent 2 days on it
    I have something but it doesn't work.
  9. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    #include int i; int...

    #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;
  10. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Matrix

    Guess posting the entire thing didn't work, so right now i have
    #include <stdio.h>

    int i;
    int j;
    int select;
    double A[5][5];
    double B[5][5];
    ...
  11. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Matrix

    matrix A should be defined as:
    double A[5][5];
    and current dimension values (that may change as the user inputs new matrices):
    int columnsA = 3; /* initial number of columns in A*/
    int rowsA = 3;...
  12. Replies
    70
    Views
    16,542

    I have Dial-Up pretty damn fast

    I have Dial-Up
    pretty damn fast
  13. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Matrix Help

    I am confused. Any little help will be appreciated ;) My notes don't help much.


    A matrix is a twodimensional
    data structure. It is usually organized as a row of columns
    of numbers. Examples of...
  14. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    My lecture notes don't help me. Any little info...

    My lecture notes don't help me. Any little info will greatly be appreciated
  15. Thread: Matrix Help

    by HelpmeMark
    Replies
    27
    Views
    7,016

    Matrix Help

    A matrix is a twodimensional
    data structure. It is usually organized as a row of columns
    of numbers. Examples of matrices are:
    A=[2 3 4
    2 4 5
    1 1 3 ] B=[5 6 2
    2 5 3
    1 6 7 ]
    A and B are...
Results 1 to 15 of 15