Search:

Type: Posts; User: matrixhelp

Search: Search took 0.01 seconds.

  1. Thread: Convert

    by matrixhelp
    Replies
    1
    Views
    1,185

    Convert

    how to convert both letters of a comparison to a common representation
    before testing their equality (i.e. convert both letters to upper case before comparing them).
  2. Replies
    1
    Views
    1,623

    Input and Output files

    How do I write an input and output file that stores informtion
  3. Thread: Whats wrong

    by matrixhelp
    Replies
    13
    Views
    1,761

    while(select !=5) { DisplayMatrixA(); ...

    while(select !=5)
    {
    DisplayMatrixA();

    printf("(1)Set matrix A:\n ");
    printf("(2)Add a matrix B:\n ");
    printf("(3)Multiply with a matrix B:\n ");
    ...
  4. Thread: Whats wrong

    by matrixhelp
    Replies
    13
    Views
    1,761

    /*Matrix*/ #include int i=0; int...

    /*Matrix*/

    #include<stdio.h>
    int i=0;
    int j=0;
    int k=0;
    int col=3;
    int row=3;
    int rowb=0;
    int t;
  5. Thread: Whats wrong

    by matrixhelp
    Replies
    13
    Views
    1,761

    Having trouble with Multiplication and Transpose

    /code/
    /* Matrix */

    #include <stdio.h>

    void SetMatrixA();
    void AddMatrixBtoA();
    void DisplayMatrixA();
    void MultiplyMatrixBtoA();
    void TransposeMatrixA();
  6. Thread: Whats wrong

    by matrixhelp
    Replies
    13
    Views
    1,761

    Whats wrong

    /* Matrix */

    #include <stdio.h>

    void SetMatrixA();
    void AddMatrixBtoA();
    void DisplayMatrixA();
    void MultiplyMatrixBtoA();
    void TransposeMatrixA();
    int rowsA;
  7. Thread: Matrices

    by matrixhelp
    Replies
    1
    Views
    1,144

    Matrices

    /code/
    double A[5][5];
    int columnsA = 3;
    int rowsA = 3;

    void setmatrix(double MA[5][5])
    {
    int i;
    int j;
  8. Thread: Matrix Help

    by matrixhelp
    Replies
    27
    Views
    7,013

    Thanks For Nothing

    Thanks For Nothing
Results 1 to 8 of 8