Recent content by Luke1986

  1. L

    Fortran Can You Implement Gauss-Seidel Iteration in Fortran 90/95?

    Hi, I have to program using Fortran 90/95 simultaneous linear equations. My question is, is it possible to program this? First I did the inverse matrix to find the values of the solution of a 4X4 and 3X3 matrix. I set up [A][X] = [X]' and did the inverse matrix to find the values for [X]. So...
  2. L

    Comp Sci Solving Quadratic Equations: Invalid Inputs

    Homework Statement IMPLICIT NONE REAL :: A, B, C, DISCR, X1, X2, x1i, x2i CHARACTER(3)::ANS,ANS1 ! Reads the coefficients for the quadratic equation 33 WRITE(*,*)")"Please enter a *REAL*NUMBER* coefficient ( A )." READ(*,*)A WRITE(*,*)"Please...