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: *

  • Users: Eide
  • Order by date
  1. Eide

    Reshape

    You are right, I checked and it's correct. Sometimes it's easier as it seems : )
  2. Eide

    Reshape

    Hi, I need to reshape a one dimensional array into three three-dimensional arrays and I wonder how to do this correctly. In the code sample below you can see how the big one dimensional array is formed from the three three-dimensional ones. But now I need to do the opposite operation. Would be...
  3. Eide

    How to solve Ax=B complex matrix system in F 77

    Hi asela23 there are different ways to solve the linear system Ax = b. From your first post you I see that x and b are vectors and A is symmetric. You get x by inverting the coefficient matrix A -> x = A^-1 b. Inversion of A can be done by an iterative method like preconditioned conjugated...
  4. Eide

    double loop

    Thanks feherke for the quick reply - now I also understand the error message : )
  5. Eide

    double loop

    Hi all, Because of getting tired of editing ini files I wanted to write a small prog helping me. I have to make a list of several instruments and runs. I tried: set maxtape 10 set maxsite 10 for { set i 1 } { $i <= $maxsite } { incr i } { set j 0 for { set j 1 } { $j <= $maxtape } { incr...
  6. Eide

    Derived type binary io

    Hi xwb, thanks for the help. I think I will use the posibility to read the elements of the type structure individually. I do not get the improved runtime for reading but I can use the structure later.
  7. Eide

    Derived type binary io

    ! Hei Hei ! ! please see the following lines ! program tektip !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! check derived type structure for binary io ! compile -> ifort tektip.f90 -o xtektip ...

Part and Inventory Search

Back
Top