Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. qwerty9143

    Fortran Programming... Help Please!!!!!

    I had my TA for this class try to break it down, but it just wasn't helping any of the class. I was hoping I'd find someone that can help me complete the assignment especially considering there is no office hours the remaining of the week.
  2. qwerty9143

    Fortran Assignment, in need of help please!!

    Honestly, I have not started this one. I really do not know how to implement what was given and such. I do understand that a do while loop is required such as: do while (abs(x)<0) ... something like that.
  3. qwerty9143

    Fortran Assignment, in need of help please!!

    The Newton method is used to determine the value of x that makes |f(x)| < t0≈0. The value of x is determined from the following formula, where x0 is the initial guess: xn+1 = xn - (f(xn)/f'(xn)) n=0,1,2,... In this equation, the prime denotes the derivative with...
  4. qwerty9143

    Fortran Programming... Help Please!!!!!

    Given two polynomials: F1(x) = c1xn + c2xn-1 + ... + cnx + cn+1 F2(x) = β1xm + β2xm-1 + ... + βmx + βm+1 Write a fortran subroutine /function to add them, that is, F(x)= F1(x) + F2(x), when, n=m, n>m and n<m. Polynomials are added by adding the coefficients of the...

Part and Inventory Search

Back
Top