Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Поиск по:star.arm.ac.uk   - Поискать по всем серверам
На этой странице приведены все страницы сервера star.arm.ac.uk ,которые мы индексируем. Показаны документы 9181 - 9197 из 9197.

В начало ] Пред. | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460

Упорядочить по: URL  |  дате изменения
9181. Tutorial on Fortran 90
The programming language FORTRAN is the principal language for scientific and technical computations. ... It has recently been carefully revised, resulting in a modern and powerful language, Fortran 90. The intent with this new standard is to make Fortran into a useful and efficient language for the scientific and technical computations also towards the end of this decade. ... This tutorial therefore contains an Appendix on the recent proposed addition to Fortran, High Performance Fortran. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/tutorial.html -- 3.3 Кб -- 10.02.1996
Похожие документы

9182. Runge-Kutta for a system
... Last modified: 14 December 1995 . boein@nsc.liu.se ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/rk.html -- 2.7 Кб -- 10.02.1996
Похожие документы

9183. Pacific-Sierra
Pacific-Sierra Research Corporation Computer Products Group 2901 28th Street Santa Monica, CA 90405 info@psrv.com Tel: +1 310 314 2338 Fax: +1 310 314 2323 This system offers translation in both directions, from Fortran 90 to Fortran 77 and from Fortran 77 to Fortran 90. ... The paper by John K Prentice, "Translation of Fortran 77 to Fortran 90 Using VAST-90", Fortran Journal, Vol. ... 4, July/August 1993, gives a very favourable view of VAST-90 and its performance at translation. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/pacific.html -- 2.5 Кб -- 10.02.1996
Похожие документы

9184. NAG's Fortran 90
... Compilation and execution with the NAG compiler . Peculiarities in the NAG compiler . System parameters The Numerical Algorithms Group Ltd Wilkinson House Jordan Hill Road Oxford OX2 8DR infodesk@nag.co.uk Tel: +44 1865 511245 Fax: +44 1865 310139 NAG offers a Fortran 90 system which behaves as a compiler but in reality translates to C (except for the PC version). ... CERN had at that time a total of 80 000 code lines working with NAG's Fortran 90 compiler, version 1.1. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/nag.html -- 10.5 Кб -- 10.02.1996
Похожие документы

9185. Fortran and Pascal
Fortran is a simple language . Fortran has always existed . Fortran compilers are generally available . Earlier the first programming language . ... Good at numerical analysis and technical calculations . ... A large number of programs and routines in Fortran are exchanged internationally . ... Fortran doesn't have reserved words, it has short identifiers, the identifiers do not have to be specified . ... Fortran programs are usually less well structured then Pascal programs . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/a1.html -- 3.6 Кб -- 10.02.1996
Похожие документы

9186. Martin Murphy
. NAME: Martin Murphy . DOB: 26 May 1950 . POSITION: Starlink Manager . E-MAIL ADDRESS: . hmm@star.arm.ac.uk . EDUCATIONAL DETAILS: . Queens University of Belfast, . University of Surrey at Guildford . COUNTRY AND TOWN OF BIRTH: . Northern Ireland, Newry .
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/staff/martin.html -- 1.4 Кб -- 11.01.1996
Похожие документы

9187. http://star.arm.ac.uk/f77to90/code/makefile
labb5: huvud.o lasmat.o lasvek.o matin.o vekin.o \ matut.o vekut.o los.o loes.o f90 -o labb5 huvud.o lasmat.o lasvek.o matin.o vekin.o \ matut.o vekut.o los.o loes.o huvud.o: huvud.f90 f90 -c huvud.f90 lasmat.o: lasmat.f90 f90 -c lasmat.f90 lasvek.o: lasvek.f90 f90 -c lasvek.f90 matin.o: matin.f90 f90 -c matin.f90 vekin.o: vekin.f90 f90 -c vekin.f90 matut.o: matut.f90 f90 -c matut.f90 vekut.o: vekut.f90 f90 -c vekut.f90 los.o: los.f90 f90 -c los.f90 loes.o: loes.f90 f90 -c loes.f90
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/makefile -- 1.5 Кб -- 09.01.1996
Похожие документы

9188. http://star.arm.ac.uk/f77to90/code/solve1.f90
... Array specifications REAL, DIMENSION (:, :), INTENT (IN) :: A REAL, DIMENSION (:), INTENT (OUT) :: X REAL, DIMENSION (:), INTENT (IN) :: B LOGICAL, INTENT (OUT) :: ERROR ! The work area M is A extended with B REAL, DIMENSION (SIZE (B), SIZE (B) + 1) :: M INTEGER, DIMENSION (1) :: MAX_LOC REAL, DIMENSION (SIZE (B) + 1) :: TEMP_ROW INTEGER :: N, K ! ... TRIANG_LOOP: DO K = 1, N - 1 ! ... These values are not used END IF END DO TRIANG_LOOP IF (M (N, N) == 0) ERROR = .TRUE. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/solve1.f90 -- 3.0 Кб -- 09.01.1996
Похожие документы

9189. http://star.arm.ac.uk/f77to90/code/solve.f90
SUBROUTINE SOLVE_LINEAR_SYSTEM(A, X, B, ERROR) IMPLICIT NONE ! Array specifications DOUBLE PRECISION, DIMENSION (:, :), INTENT (IN) :: A DOUBLE PRECISION, DIMENSION (:), INTENT (OUT) :: X DOUBLE PRECISION, DIMENSION (:), INTENT (IN) :: B LOGICAL, INTENT (OUT) :: ERROR ! The work area M is A extended with B DOUBLE PRECISION, DIMENSION (SIZE (B), SIZE (B) + 1) :: M INTEGER, DIMENSION (1) :: MAX_LOC DOUBLE PRECISION, DIMENSION (SIZE (B) + 1) :: TEMP_ROW INTEGER :: N, K ! ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/solve.f90 -- 3.0 Кб -- 09.01.1996
Похожие документы

9190. http://star.arm.ac.uk/f77to90/code/lab1_e.p
program RK1; (* A simple program in Pascal for Runge-Kutta's method for a first order differential equation. dy/dx = x^2 + sin (xy) y(1) = 2 *) var number , i : integer; h, k1, k2, k3, k4, x, y : real ; function f(x,y : real ) : real ; begin f := x*x + sin (x*y) end ; begin number := 1; while number 0 do begin x := 1.0; y := 2.0; writeln (' Give the number of steps '); read ( ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/lab1_e.p -- 2.3 Кб -- 09.01.1996
Похожие документы

9191. http://star.arm.ac.uk/f77to90/code/test_qu2.f90
PROGRAM TEST_ADAPTIVE_QUAD IMPLICIT NONE INTERFACE FUNCTION F(X) RESULT ( FUNCTION_VALUE ) REAL , INTENT (IN) :: X REAL :: FUNCTION_VALUE END FUNCTION F END INTERFACE INTERFACE RECURSIVE FUNCTION ADAPTIVE_QUAD (F, A, B, FA, FB, TOL , ABS_ERROR ) RESULT ( RESULT ) REAL , EXTERNAL :: F REAL , INTENT (IN) :: A, B, FA, FB, TOL REAL , INTENT (OUT) :: ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/test_qu2.f90 -- 2.6 Кб -- 09.01.1996
Похожие документы

9192. http://star.arm.ac.uk/f77to90/code/test_qua.f90
PROGRAM TEST_ADAPTIVE_QUAD IMPLICIT NONE INTERFACE FUNCTION F(X) RESULT ( FUNCTION_VALUE ) REAL , INTENT (IN) :: X REAL :: FUNCTION_VALUE END FUNCTION F END INTERFACE INTERFACE RECURSIVE FUNCTION ADAPTIVE_QUAD (F, A, B, TOL , ABS_ERROR ) RESULT ( RESULT ) REAL , EXTERNAL :: F REAL , INTENT (IN) :: A, B, TOL REAL , INTENT (OUT) :: ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/test_qua.f90 -- 2.5 Кб -- 09.01.1996
Похожие документы

9193. http://star.arm.ac.uk/f77to90/code/quad.f90
RECURSIVE FUNCTION ADAPTIVE_QUAD (F, A, B, TOL , ABS_ERROR ) RESULT ( RESULT ) IMPLICIT NONE INTERFACE FUNCTION F(X) RESULT (FUNCTION_VALUE) REAL , INTENT(IN) :: X REAL :: FUNCTION_VALUE END FUNCTION F END INTERFACE REAL , INTENT(IN) :: A, B, TOL REAL , INTENT(OUT) :: ABS_ERROR REAL :: RESULT REAL :: STEP , MIDDLE_POINT ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/quad.f90 -- 2.5 Кб -- 09.01.1996
Похожие документы

9194. http://star.arm.ac.uk/f77to90/code/quad2.f90
RECURSIVE FUNCTION ADAPTIVE_QUAD (F, A, B, FA, FB, TOL , ABS_ERROR ) RESULT ( RESULT ) IMPLICIT NONE INTERFACE FUNCTION F(X) RESULT (FUNCTION_VALUE) REAL , INTENT(IN) :: X REAL :: FUNCTION_VALUE END FUNCTION F END INTERFACE REAL , INTENT(IN) :: A, B, FA, FB, TOL REAL , INTENT(OUT) :: ABS_ERROR REAL :: RESULT REAL :: STEP, MIDDLE_POINT , FMIDDLE ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/quad2.f90 -- 2.5 Кб -- 09.01.1996
Похожие документы

9195. http://star.arm.ac.uk/f77to90/code/test_dyn.f90
MODULE DYNA IMPLICIT NONE REAL, DIMENSION(:), ALLOCATABLE, SAVE :: WORK END MODULE DYNA PROGRAM TEST_OF_DYNA USE DYNA IMPLICIT NONE PRINT *, 'MAIN' CALL SUB1 CALL SUB2 PRINT *, 'MAIN' END PROGRAM TEST_OF_DYNA SUBROUTINE SUB1 USE DYNA IMPLICIT NONE ! ... The array WORK is used here REAL :: B REAL, DIMENSION(:), ALLOCATABLE :: A PRINT *, 'SUB2' ALLOCATE ( A(SIZE(WORK)) ) A = 2.* WORK B = SUM(WORK) WORK = A WRITE(*,*) A WRITE(*,*) B WRITE(*,*) WORK END SUBROUTINE SUB2 ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/code/test_dyn.f90 -- 1.8 Кб -- 09.01.1996
Похожие документы

9196. http://star.arm.ac.uk/f77to90/apr.txt
rice.edu Wed Jul 5 19:58:49 1995 Date: Wed, 5 Jul 95 09:28:40 PDT From: marc@efn.org (Marc Baber) To: hpff@cs.rice.edu Subject: APR Releases xHPF 2.1 and NAS Benchmark Results Content-Length: 14861 APR RELEASES xHPF 2.1, WORLD'S FIRST HPF TO TURN IN NAS BENCHMARK RESULTS July 5, 1995 ========================================================================= Sacramento, CA -- Applied Parallel Research ( APR ) announced it will begin shipping ... Cray C90 1 7634. ... Cray C90 1 694. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/apr.txt -- 15.7 Кб -- 09.01.1996
Похожие документы

9197. Armagh Observatory Home Page
NEW: Interactive Orrery with interesting links. Also, check out his Home Page . ADS Abstracts Database at Harvard . Abstracts Database from Cambridge . Astronomical Preprint Services on the WWW . Astronomical Abstract Services on the WWW. ... Starlink Home Page . Local Help . ... Local email Aliases and a Form to search Chris Benn's astronomers database. ... Armagh Observatory Preprint Series . ... Links to other Web Pages . ... To the Observatory Welcome Page ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/home-org.html -- 3.3 Кб -- 20.07.1995
Похожие документы

В начало ] Пред. | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460

Rambler's Top100 RFBR Яндекс цитирования