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. Salvanto

    Library Power Station Fortran

    I resolved!!!
  2. Salvanto

    Library Power Station Fortran

    Hi, thx for your answer. Attached the library screen containing LINRG. I don't understand at this point how to recall it. Pls, help me https://files.engineering.com/getfile.aspx?folder=6894cc3b-c64a-4813-bbe7-a4192d16110b&file=Library.PNG
  3. Salvanto

    Library Power Station Fortran

    If i delete "END" fortran give me this two errors: ---------------------------- Text1.obj : error LNK2001: unresolved external symbol _LINRG@20 Text1.exe : fatal error LNK1120: 1 unresolved externals ----------------------------
  4. Salvanto

    Library Power Station Fortran

    fortran 90
  5. Salvanto

    Library Power Station Fortran

    Hello! I have a problem with the libray of Power Station Fortran. I write this code: -------------------- program InverseMatrix real, dimension (3,3) :: A, B data A/2,2,7,3,3,3,6,5,9/ do i=1,3 write (*,*) A(i,:) end do CALL LINRG (3, A, 3, B, 3) END pause end program InverseMatrix...
  6. Salvanto

    max value between many matrix

    Perfect, thx!!
  7. Salvanto

    max value between many matrix

    Yes thx!!!I have another question!! But if instead, always from the following expression: do i=2, 5436, 2 y = Matmul (Om,y) + Matmul (g0, Vm)*H(2,i)+Matmul(g0, Vm)*H(2,i+2) I would like that in the matrix product "Om * y", the "y" was the one obtained in the previous calculation. I'll...
  8. Salvanto

    max value between many matrix

    Thx for the Answer. 2. one maximum element y(k) of all the 2718 arrays computed The matrix have this dimension (2,1). I want to find the maximum element y(1,1) of all the 2718 arrays computed between all the 2718 arrays computed.
  9. Salvanto

    max value between many matrix

    Hello, i have a problem to find the maximum value between many array. I do a "cicle do", and i found 2718 array. I would like to find the maximum value between this 2718 array. This is one part of the code: do i=2, 5436, 2 y = Matmul (Om,y) + Matmul (g0, Vm)*H(2,i)+Matmul(g0, Vm)*H(2,i+2) end...

Part and Inventory Search

Back
Top