repo.or.cz
/
maxima.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add some basic letsimp tests based on bug #3950
[maxima.git]
/
share
/
colnew
/
ex2
/
gsub.f
blob
84054a3344f3902879eb1334a8c4c90b3659054c
1
C................................................................ GSU 10
2
SUBROUTINE
GSUB
(
I
,
Z
,
G
)
GSU
20
3
implicit real*8
(
a
-
h
,
o
-
z
)
4
DIMENSION
Z
(
4
)
5
GO TO
(
10
,
20
,
10
,
30
),
I
6
10
G
=
Z
(
1
)
7
RETURN
8
20
G
=
Z
(
3
)
9
RETURN
10
30
G
=
Z
(
4
) -
.3
*
Z
(
3
) +
.7
11
RETURN
12
END