Search:

Type: Posts; User: jumbojay

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    5,710

    this was originally a fortran routine that was...

    this was originally a fortran routine that was converted to be made compatible with C.
    one of my header files is f2c.h
  2. Replies
    5
    Views
    5,710

    can anyone tell me how to resolve these errors?...

    can anyone tell me how to resolve these errors?

    hw5.c:41: warning: passing argument 3 of 'dgeev_' from incompatible pointer type
    hw5.c:41: warning: passing argument 5 of 'dgeev_' from...
  3. Replies
    5
    Views
    5,710

    i do know what a pointer is, and i know what to...

    i do know what a pointer is, and i know what to put for n, a and lda. i am not sure about what to put for the others and Y. I will only be using this on a nxn matrix.

    jason
  4. Replies
    5
    Views
    5,710

    how to use dgeev.c

    can anyone simplify the arguments for the following routine in dgeev.c for me? I am having trouble figuring out how to use this properly.



    int dgeev_(char *jobvl, char *jobvr, integer *n,...
  5. Replies
    6
    Views
    1,890

    thanks for the help guys. im now down to one...

    thanks for the help guys. im now down to one error message,
    In file included from hw2-4a.c:4:
    /usr/include/stdlib.h:784: error: syntax error before 'int'

    - any one able to help me with this...
  6. Replies
    6
    Views
    1,890

    can anyone explain the following errors for me...

    can anyone explain the following errors for me and that way i might be able to puzzle it out myself.

    hw2-4.c:27: error: invalid conversion from 'char*' to 'char*'
    hw2-4.c:27: error: invalid...
  7. Replies
    6
    Views
    1,890

    setting up an external function

    i am trying to call a function that exists outside of my main c file, but i am having some trouble with getting it setup and what to pass it.
    this ithe my main file.



    #include <stdio.h>...
  8. Replies
    3
    Views
    1,418

    if i change the declarations to double...

    if i change the declarations to


    double matnorm1(double A[][2], int m, int n);

    then it works for the 2x2 matrix in main, but i want it to flexible to handle any matrix specified as mxn
  9. Replies
    3
    Views
    1,418

    pointer 2d array

    im having trouble compiling this,



    #include <stdio.h>
    #include <math.h>

    double matnorm1(double **A, int m, int n)
    {
    double norm=0.0;
Results 1 to 9 of 9