Recent content by bartschaff

  1. B

    Is Continuing with a Physics Major Worth It?

    It sounds like a great idea, a compromise that will give you at least some room to breath. Good luck!
  2. B

    Is Continuing with a Physics Major Worth It?

    Hi, Ein12, I second TomServo, try talking to someone else at the university who is supposed to support you, because, if you find a helping hand locally, it might be able to help you much more concretely then we can at a distance. That said, since you're looking for help here, I'll share my...
  3. B

    Comp Sci How can I read an array from a specific part of a file in FORTRAN 77?

    In the same line of what's already here, you can read what you want to discard in a loop: do i=1,27 read(1,*)a enddo do i=1,10000 read(1,*,end=10)x1,x2,x3 write(*,*)x1,x2,x3 enddo 10 continue where 27 appears to be the number of...
  4. B

    Complex formulation of classical mechanics

    A quick search showed me that, no idea how serious it is:\ Complex Elliptic Pendulum Carl M. Bender, Daniel W. Hook, Karta Kooner http://arxiv.org/abs/1001.0131
  5. B

    Comp Sci How can I read an array from a specific part of a file in FORTRAN 77?

    Hello, it's an old question, but, for people googling for an answer (like me) it should still be useful to give one. Based on my own attempts and on a solution to a slightly more complicated question, at http://www.megasolutions.net/fortran/How-to-read_csv-file-in-fortran77_-49959.aspx I...
Back
Top