Author |
Message |
Topic: Problem Displaying JPG File |
zaxfuuq
Replies: 15
Views: 33779
|
Forum: ClearWin+ Posted: Tue Oct 16, 2007 4:13 am Subject: using paint |
I hope this reply ends up in the right place. This is the first time I've used this forum since relocating.
I use paint to make the conversion from .bmp to .jpg all the time. The thing that paint ... |
Topic: matmul trouble |
zaxfuuq
Replies: 3
Views: 10946
|
Forum: Plato Posted: Mon Jul 09, 2007 8:58 pm Subject: |
Success!
Off the command line, I type
FTN95 maine5.f95 /lgo
and get correct output:
7
10
15
22
What's that mean?
--
zax |
Topic: matmul trouble |
zaxfuuq
Replies: 3
Views: 10946
|
Forum: Plato Posted: Mon Jul 09, 2007 5:46 pm Subject: matmul trouble |
program maine5
real :: x(2,2), z(2,2)
OPEN(11, File="output4.txt",STATUS='REPLACE')
data x /1,2,3,4/
z =x
z = matmul(x,x)
write (11,'(f5.2)') z
write (*,'(f5.2)') z
close(11)
end pr ... |
Topic: how to find a function in clearwin |
zaxfuuq
Replies: 2
Views: 8268
|
Forum: ClearWin+ Posted: Fri May 04, 2007 8:21 pm Subject: |
I'm uncertain whether I'm replying to myself or Paul. One way to find out.
FTN95 came with my Plato 3 IDE. Without knowing its name, I had used it before. I had misread this function, thinking i ... |
Topic: how to find a function in clearwin |
zaxfuuq
Replies: 2
Views: 8268
|
Forum: ClearWin+ Posted: Fri May 04, 2007 1:59 am Subject: how to find a function in clearwin |
With the help of a friend in comp.lang.fortran, I've been tinkering with source that resizes an image. It uses clearwin, and in particular, declares external cb_gr as a function. Where can I find in ... |
|