XL Fortran V14.1 released044 (5/12/2012 6:10:34 AM) comp.lang.fortran We're pleased to announce the availability of XL Fortran V14.1 for AIX and
Linux on Power. Included in this release are selected Fortran 2008
features, OpenMP 3.1 compliance, improved performance for Fortr... Rafik
self calibrating clock via wifi?533 (3/31/2011 12:37:42 PM) comp.home.automation I have some atomic clocks that are not working because apparently the clock signal is too weak at my apartment. Since I have a wifi router in my apartment, I wonder if there is any clock that calibrates itse... bob
using 'size' on a stuct344 (2/9/2010 11:11:04 PM) comp.soft-sys.matlab Hi I have a character array called filename containing 'n040210'. I have a structure S containing a field called 'n040210' if i use... SIZE ( S . n040210 {1} ) ans= 366 5 which is what i want. ... James
a for loop to create several arrays425 (2/8/2010 10:48:04 PM) comp.soft-sys.matlab Hi I have large data sets (#####x5 double arrays) that are chopped up using a for/if loop. I would like to name new arrays containing the chopped parts of the data set. I have the data set name in a charact... James
Signal Localization3529 (8/19/2009 12:58:14 AM) comp.dsp I am working on a problem involving signal localization and would like suggestions on signal processing alternatives. Imagine that you are in the hallway of a hotel with a receiver in hand. Down the hall th... Jimmy
creating volume from 3d mesh1037 (9/19/2008 2:47:02 PM) comp.soft-sys.matlab Hello everyone, I need to compare beach profiles. I have the X Y Z data, which makes up the beach. Essentially I want to extrude the beach surface through a give height,creating a volume, is this possible? ... James
HP powers up from hibernation on its own527 (8/1/2007 5:17:56 PM) comp.sys.laptops My HP dv6000 powers itself up on its own after it has been hibernating (S5 state) for some unknown reason. I like hibernation mode for a number of key reasons, and my old Toshiba would stay powered off until I... Duane
Non-elemental procedure, multiple possible ranks1263 (9/21/2012 12:31:52 AM) comp.lang.fortran I was considering whether it's possible to write a procedure for multiple ranks without duplicated code, where an elemental procedure would be inappropriate. Here's a (mildly artificial) example of where this m... SeanSantos(2)
Polymorphism and allocatables427 (9/6/2012 7:10:54 AM) comp.lang.fortran Getting slowly used to work with polymorphism in F2003, I would like to
do the following:
1) Store some object in a polymorphic container
2) retrieve it later
without actually copying it, i.e., just mo... seesig3208(122)
binary data #27296 (8/30/2012 9:40:13 AM) comp.lang.fortran Hi!
My dosimeters provide data ASCII data-files, providing the data in 16-bit h=
exadecimal words. Reading in these words goes well. I declared them as foll=
ows:
CHARACTER(4) :: MyWord
In SOME ca... arjan.van.dijk(248)
gfortran write performance1563 (8/29/2012 7:34:46 PM) comp.lang.fortran I have a program that was originally developed on a 32-bit Windows XP
machine using CVF 6.6c. Fairly simple. Works fine.
More recently, I ported that program to 64-bit Windows 7 using
gfortran 4.6.1 (the... tholen(16649)
using pointers as aliases to avoid global variables533 (8/27/2012 3:04:08 PM) comp.lang.fortran I'm working with a large amount of code which has evolved along the years f=
rom pure F77 to a (horrible) mix of F77 and f90. This code uses some global=
variables (all of them of the same type) defined incl... yiyu.jgl(68)
accessing a fortran module from c760 (7/30/2012 7:27:11 PM) comp.lang.fortran I have the following sample module where I need to access the 'mighty' structure from c:
MODULE testm
TYPE mytype
INTEGER :: sz
INTEGER, POINTER :: j(:)
INTEGER, POINTER :: k(:)
END TYPE... gafferlc(3)
EXIT from DO WHILE loop542 (4/22/2012 3:47:49 AM) comp.lang.fortran Hi, I have a small program as follows.
---------------------------------------------------------
program test
implicit none
integer :: i ,j,k,l,m
m = 37
k = 0
do while (k<m)
do j = 1,3
do i = 1,2
k... rajkrai(12)
Issue using common blocks in Fortran249 (4/8/2012 3:10:29 AM) comp.lang.fortran down vote favorite
share [g+] share [fb] share [tw]
=09
I'm working with fortran subroutines of a finite element analysis program. =
I have to share variables between the two subroutines so I'm using COMM... jpcgandre(2)
use of optional parameters1951 (4/7/2012 11:54:40 AM) comp.lang.fortran I suppose most people use optional output parameters to avoid executing
code which is not needed or even impossible (depending on optional input
parameters, say). Another use is to make things easier for the... helbig(4870)
OO getter and setter methods1291 (3/31/2012 2:35:27 PM) comp.lang.fortran Hi,
if you have a derived type with many private variables, how would you
write 'getter and setter methods' for them? I am thinking in terms of
readability, maintainability, efficiency, etc. Here an exam... no.spam.address(65)