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 Mike Lewis 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. chazhang

    Passing allocatable arrays

    Hi, I was wondering whats wrong with the way I'm passing my allocatable arrays. I've narrowed down the error to something similar to this: program test_array integer, allocatable :: test(:) integer n allocate(test(5)) test = (/ 1,2,3,4,5 /) call...
  2. chazhang

    Trouble manipulating arrays in Fortran?

    The first one worked perfectly! Thanks sooo much for the help!
  3. chazhang

    Trouble manipulating arrays in Fortran?

    Thanks. But now I'm having trouble because I keep triggering breakpoints on my allocation lines, not exactly sure why it occurs. Here's an instance of the code (comments removed): subroutine wavelettransform(in,filt,out) real in(16), out(16) real, allocatable :: filt(:) real...
  4. chazhang

    Trouble manipulating arrays in Fortran?

    Hi, I'm not really a programmer and I've been working mostly in Matlab for the last few weeks. Now I need to take my work and translate it to Fortran to integrate it with the rest of the program (which is written in Fortran 77). I'm just wondering if it's possible to assign the length of the...

Part and Inventory Search

Back
Top