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 strongm 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. radzio

    2D array to graphics

    Hi gullipe, Thank you:) I will try and see if it works:) Radek
  2. radzio

    2D array to graphics

    Hi All, Imagine I have a 2D array like, lets say 1024 x 512 in size, filled with real or integer numbers. I would like to write it as some graphical format, for example TIFF or something. As a result I would like to have something like attached (the legend can be omitted). It is a readout from...
  3. radzio

    "Hybrid" multidimensional arrays

    Fist of all thanks for interest:) I'm using mostly Fortran 90. As far as I understand I can define for example type like this in a module: MODULE MOD1 TYPE TP1 INTEGER,DIMENSION(5) :: INTMAT REAL :: realval END TP1 END MODULE MOD1 Then in a program I would like to open some...
  4. radzio

    "Hybrid" multidimensional arrays

    Hi All, I have a question concerning the possibility of having some kind of a "hybrid" array which can store, for example, both integer and real numbers. Is possible to construct something like this using derived types? I'm not a professional programmer and looking at the web for this...
  5. radzio

    Sorting of ordered triples

    Hi, I managed to calculate some king of checksum for my triples and perform a heap-sort. It works well but I was thinking is is possible to apply something like radix sort and heap-sort together to use only the (h,k,l) indices given. Thanks in advance, Radek
  6. radzio

    Sorting of ordered triples

    I have found those pages already but the codes there are really hard to modify or use... (as said not really into professional programming). Any deeper explanation how the algorithm may work in my case would be very appreciated:) Radek
  7. radzio

    Sorting of ordered triples

    Hi All, I got stuck on a quite silly problem but I'm no a programmer and I really need to do it... I have a set of ordered triples (of integer numbers) in a array like: h1 k1 l1 k2 k2 l2 ... hN kN lN where N is rather big (lets say more than 200,000). Some triples are the same. How could I...

Part and Inventory Search

Back
Top