|
|
 |
| found 6 articles for 0.000 sec |
  |
Group: comp.lang.fortran · Group Profile · Search for Paraboloids in comp.lang.fortran
Author: Ron Ford
Date: Sep 8, 2008 00:33
...> for variables), so that one could set the coefficients A-F before doing the integration and get different paraboloids. FUNCTION General_Paraboloid(x,y) RESULT(f) USE VAR_General_Paraboloid,ONLY: A,B,C,D,E,F REAL,..., but I wouldn't know how to call them. What does the following have to do with the paraboloid? call s_createfn( "1-tanh( (x-0.5)**2 + (y-0.4)**2 )" , "x y" ...
|
| Show full article (3.86Kb) · Show article thread |
|
|
Group: comp.lang.fortran · Group Profile · Search for Paraboloids in comp.lang.fortran
Author: Will W.
Date: Sep 4, 2008 12:35
...that one could set the coefficients A-F before doing the integration and get different paraboloids. FUNCTION General_Paraboloid(x,y) RESULT(f) USE VAR_General_Paraboloid,ONLY: A,B,C,D,E... the function's coefficients and propagate them to output. +W Naturally, the specific paraboloid should have declarations for A-F. FUNCTION Specific_Paraboloid(x,y) RESULT(f) REAL,INTENT(...
|
| Show full article (3.29Kb) · Show article thread |
Group: comp.lang.fortran · Group Profile · Search for Paraboloids in comp.lang.fortran
Author: Will W.
Date: Sep 4, 2008 10:47
... usage could be this, where I have "imported" the coefficients from a module called VAR_General_Paraboloid (VAR is for variables), so that one could set the coefficients A-F before doing the integration and get different paraboloids. FUNCTION General_Paraboloid(x,y) RESULT(f) USE VAR_General_Paraboloid,ONLY: A,B,C,D,E,F REAL,INTENT(IN) :: x,y REAL :: f !!--begin-- f = A*x**2 + B*x + C*x...
|
| Show full article (2.77Kb) · Show article thread |
|
 |
|
|