FORTRAN format



>>>>> "Vijayendra" == Vijayendra Munikoti  writes:


    Vijayendra> Thanks to Robert and Raymond for the patches. In
    Vijayendra> "commac.lisp" patch the line (setq string (string-trim
    Vijayendra> ... has one extra right bracket. After

Oops.  Sorry.

    Vijayendra> correcting and loading, it worked. It prints however, in E format. I have

Isn't this what you wanted?  Since the numbers are double-float
numbers, you really need the E format to get the exponent marker so
that Fortran will read them as double-precision floats.  Otherwise,
they'll be treated as single-precision and you'll lose precision.

Did you want something else?

    Vijayendra> I want to write all the expressions in a file in f90
    Vijayendra> format. I am not very clear how to go about, since the
    Vijayendra> output of f90(exp) or fortran(exp) juts prints on the
    Vijayendra> screen and cannot be accessed. Is there a solution?

Accessed in what way?

Ray