1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592
|
!***********************************************************************
! $Id: sfstubsf95.f90 12836 2013-12-09 19:33:53Z arjenmarkus $
! sfstubsf95.f
!
! Copyright (C) 2005, 2006 Arjen Markus
! Copyright (C) 2006 Alan W. Irwin
!
! This file is part of PLplot.
!
! PLplot is free software; you can redistribute it and/or modify
! it under the terms of the GNU Library General Public License as published
! by the Free Software Foundation; either version 2 of the License, or
! (at your option) any later version.
!
! PLplot is distributed in the hope that it will be useful,
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU Library General Public License for more details.
!
! You should have received a copy of the GNU Library General Public License
! along with PLplot; if not, write to the Free Software
! Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
!
!
! This file contains the interfaces for Fortran 95:
! - it includes the actual FORTRAN routines from the FORTRAN 95 bindings
! - it includes interfaces to the C routines from these bindings
! - it defines a few Fortran 95 specific items and interfaces
!
! NB
! This module is written in fixed form.
! To enable a redefinition of certain interfaces, we actually have
! two modules.
!
! NB
! The INTENT attribute is not currently used. This is a matter to
! be looked into.
!
! NB
! It is assumed in the current implementation that all arrays are
! passed with correct dimensions. It would be wiser, perhaps, to
! use the minimum dimension instead of just the dimension of the
! first array.
!
! NOTE:
! Some of the C routines will have to be renamed (via macros)
!
!***********************************************************************
!
! Parameters for identifying the kind of PLplot's real
! numbers (a configuration parameter)
! Use whatever name suits you better.
!
module plplot_flt
include 'plflt.inc'
end module
!
! Parameters and variables for strings / arrays for
! string conversion
!
module plplot_str
integer :: maxleni
parameter (maxlen = 320)
parameter (maxleni = 80)
character (len = maxlen) :: string1, string2, string3
character (len = maxlen) :: string4, string5, string6
character (len = maxlen) :: string7, string8, string9
integer, dimension(maxleni) :: s1, s2, s3, s4, s5, s6, s7, s8, s9
character(len=1), parameter :: PL_END_OF_STRING = achar(0)
end module
module plplotp
use plplot_flt
use plplot_str
use plplot_strutils
implicit none
interface plcont
module procedure plcontour_0
module procedure plcontour_1
module procedure plcontour_2
module procedure plcontour_tr
module procedure plcontour_0_all
module procedure plcontour_1_all
module procedure plcontour_2_all
module procedure plcontour_tr_all
end interface
private :: plcontour_0, plcontour_1, plcontour_2, plcontour_tr
private :: plcontour_0_all, plcontour_1_all, plcontour_2_all, plcontour_tr_all
interface plvect
module procedure plvectors_0
module procedure plvectors_1
module procedure plvectors_2
module procedure plvectors_tr
end interface
private :: plvectors_0, plvectors_1, plvectors_2, plvectors_tr
interface plshade
module procedure plshade_single_0
module procedure plshade_single_1
module procedure plshade_single_2
module procedure plshade_single_tr
end interface
private :: plshade_single_0, plshade_single_1, plshade_single_2, plshade_single_tr
interface plshades
module procedure plshades_multiple_0
module procedure plshades_multiple_1
module procedure plshades_multiple_1r
module procedure plshades_multiple_2
module procedure plshades_multiple_2r
module procedure plshades_multiple_tr
module procedure plshades_multiple_trr
end interface
private :: plshades_multiple_0, plshades_multiple_1, plshades_multiple_1r, &
plshades_multiple_2, plshades_multiple_2r, &
plshades_multiple_tr, plshades_multiple_trr
interface plimagefr
module procedure plimagefr_0
module procedure plimagefr_1
module procedure plimagefr_2
module procedure plimagefr_tr
end interface
private :: plimagefr_0, plimagefr_1, plimagefr_2, plimagefr_tr
contains
include 'sfstubs.f90'
end module plplotp
module plplot_types
use plplot_flt
type :: PLGraphicsIn
integer type ! of event (CURRENTLY UNUSED)
integer state ! key or button mask
integer keysym ! key selected
integer button ! mouse button selected
integer subwindow ! subwindow (alias subpage, alias subplot) number
character(len=16) string ! translated string
integer pX, pY ! absolute device coordinates of pointer
real(kind=plflt) dX, dY ! relative device coordinates of pointer
real(kind=plflt) wX, wY ! world coordinates of pointer
end type PLGraphicsIn
end module plplot_types
module plplot
use plplotp
use plplot_flt
use plplot_types
use plplot_strutils
!
! To be added: renaming list
!
implicit none
include 'plplot_parameters.h'
!
! To be added: alternative interfaces
!
interface
subroutine pladv( sub )
integer :: sub
end subroutine pladv
end interface
interface plbin
module procedure plbin
end interface
interface
subroutine plbop
end subroutine plbop
end interface
interface
subroutine plcalc_world( rx, ry, wx, wy, window )
use plplot_flt
real(kind=plflt) :: rx, ry, wx, wy
integer :: window
end subroutine plcalc_world
end interface
interface
subroutine plclear
end subroutine plclear
end interface
interface
subroutine plcol0( icol )
integer :: icol
end subroutine plcol0
end interface
interface
subroutine plcol1( col )
use plplot_flt
real(kind=plflt) :: col
end subroutine plcol1
end interface
interface plcolorbar
module procedure plcolorbar_1
module procedure plcolorbar_2
end interface
interface plcpstrm
module procedure plcpstrm
end interface
interface
subroutine plend
end subroutine plend
end interface
interface
subroutine plend1
end subroutine plend1
end interface
interface
subroutine plenv( xmin, xmax, ymin, ymax, just, axis )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
integer :: just, axis
end subroutine plenv
end interface
interface
subroutine pleop
end subroutine pleop
end interface
interface plerrx
module procedure plerrx
end interface
interface plerry
module procedure plerry
end interface
interface plfamadv
subroutine plfamadv
end subroutine plfamadv
end interface
interface plfill
module procedure plfill
end interface
interface plfill3
module procedure plfill3
end interface
interface
subroutine plflush
end subroutine plflush
end interface
interface
subroutine plfont( font )
integer :: font
end subroutine plfont
end interface
interface
subroutine plfontld( charset )
integer :: charset
end subroutine plfontld
end interface
interface
subroutine plgchr( chrdef, chrht )
use plplot_flt
real(kind=plflt) :: chrdef, chrht
end subroutine plgchr
end interface
interface
subroutine plgcmap1_range( min_color, max_color )
use plplot_flt
real(kind=plflt) :: min_color, max_color
end subroutine plgcmap1_range
end interface
interface
subroutine plgcol0( icol, r, g, b )
integer :: icol, r, g, b
end subroutine plgcol0
end interface
interface
subroutine plgcol0a( icol, r, g, b, a )
use plplot_flt
integer :: icol, r, g, b
real(kind=plflt) :: a
end subroutine plgcol0a
end interface
interface
subroutine plgcolbg( r, g, b )
integer :: r, g, b
end subroutine plgcolbg
end interface
interface
subroutine plgcolbga( r, g, b, a )
use plplot_flt
integer :: r, g, b
real(kind=plflt) :: a
end subroutine plgcolbga
end interface
interface
subroutine plgcompression( compression )
integer :: compression
end subroutine plgcompression
end interface
interface
subroutine plgdidev( mar, aspect, jx, jy )
use plplot_flt
real(kind=plflt) :: mar, aspect, jx, jy
end subroutine plgdidev
end interface
interface
subroutine plgdiori( rot )
use plplot_flt
real(kind=plflt) :: rot
end subroutine plgdiori
end interface
interface
subroutine plgdiplt( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plgdiplt
end interface
interface
subroutine plgetcursor( gin )
use plplot_flt
use plplot_types
type(PLGraphicsIn) :: gin
end subroutine plgetcursor
end interface
interface
subroutine plgfam( fam, num, bmax )
integer :: fam, num, bmax
end subroutine plgfam
end interface
interface
subroutine plgfci( fci )
use plplot_flt
integer(kind=plunicode) :: fci
end subroutine plgfci
end interface
interface
subroutine plgfont( family, style, weight )
integer :: family, style, weight
end subroutine plgfont
end interface
interface
subroutine plglevel( level )
integer :: level
end subroutine plglevel
end interface
interface
subroutine plgpage( xpmm, ypmm, xwid, ywid, xoff, yoff )
use plplot_flt
real(kind=plflt) :: xpmm, ypmm
integer :: xwid, ywid, xoff, yoff
end subroutine plgpage
end interface
interface
subroutine plgra
end subroutine plgra
end interface
interface plgradient
module procedure plgradient
end interface
interface plgriddata
module procedure plgriddata
end interface
interface
subroutine plgspa( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plgspa
end interface
interface
subroutine plgstrm( strm )
integer :: strm
end subroutine plgstrm
end interface
interface
subroutine plgvpd( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plgvpd
end interface
interface
subroutine plgvpw( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plgvpw
end interface
interface
subroutine plgxax( digmax, digits )
integer :: digmax, digits
end subroutine plgxax
end interface
interface
subroutine plgyax( digmax, digits )
integer :: digmax, digits
end subroutine plgyax
end interface
interface
subroutine plgzax( digmax, digits )
integer :: digmax, digits
end subroutine plgzax
end interface
interface plhist
module procedure plhist
end interface
interface
subroutine plhls( h, l, s )
use plplot_flt
real(kind=plflt) :: h, l, s
end subroutine plhls
end interface
interface
subroutine plhlsrgb( h, l, s, r, g, b )
use plplot_flt
real(kind=plflt) :: h, l, s, r, g, b
end subroutine plhlsrgb
end interface
interface
subroutine plinit
end subroutine plinit
end interface
interface
subroutine pljoin( x1, y1, x2, y2 )
use plplot_flt
real(kind=plflt) :: x1, y1, x2, y2
end subroutine pljoin
end interface
interface
subroutine pllightsource( x, y, z )
use plplot_flt
real(kind=plflt) :: x, y, z
end subroutine pllightsource
end interface
interface pllegend
module procedure pllegend_1
module procedure pllegend_2
end interface
interface plline
module procedure plline
end interface
interface plline3
module procedure plline3
end interface
interface pllsty
subroutine pllsty( lin )
integer :: lin
end subroutine pllsty
end interface
interface plmap
module procedure plmap1, plmap2
end interface plmap
interface plmeridians
module procedure plmeridians1, plmeridians2
end interface plmeridians
interface plmesh
module procedure plmesh
end interface
interface plmeshc
module procedure plmeshc
end interface
interface
subroutine plmkstrm( strm )
integer :: strm
end subroutine plmkstrm
end interface
interface
subroutine plpat( nlin, inc, del )
integer :: nlin, inc, del
end subroutine plpat
end interface
interface
subroutine plpath( n, x1, y1, x2, y2 )
use plplot_flt
integer :: n
real(kind=plflt) :: x1, y1, x2, y2
end subroutine plpath
end interface
interface plot3d
module procedure plot3d
end interface
interface plot3dc
module procedure plot3dc
end interface
interface plpoin
module procedure plpoin
end interface
interface plpoin3
module procedure plpoin3
end interface
interface plpoly3
module procedure plpoly3
end interface
interface
subroutine plprec( setp, prec )
integer :: setp, prec
end subroutine plprec
end interface
interface
subroutine plpsty( patt )
integer :: patt
end subroutine plpsty
end interface
interface
subroutine plreplot
end subroutine plreplot
end interface
!
! Note: plrgb and plrgb1 can be merged
!
interface
subroutine plrgb( r, g, b )
use plplot_flt
real(kind=plflt) :: r, g, b
end subroutine plrgb
end interface
interface
subroutine plrgb1( r, g, b )
integer :: r, g, b
end subroutine plrgb1
end interface
interface
subroutine plrgbhls( r, g, b, h, l, s )
use plplot_flt
real(kind=plflt) :: r, g, b, h, l, s
end subroutine plrgbhls
end interface
interface
subroutine plschr( chrdef, chrht )
use plplot_flt
real(kind=plflt) :: chrdef, chrht
end subroutine plschr
end interface
interface plscmap0
module procedure plscmap0
end interface
interface plscmap0a
module procedure plscmap0a
end interface
interface
subroutine plscmap0n( n )
integer :: n
end subroutine plscmap0n
end interface
interface plscmap1
module procedure plscmap1
end interface
interface plscmap1a
module procedure plscmap1a
end interface
interface plscmap1l
module procedure plscmap1l
module procedure plscmap1l2
end interface
interface plscmap1la
module procedure plscmap1la
module procedure plscmap1la2
end interface
interface
subroutine plscmap1n( n )
integer :: n
end subroutine plscmap1n
end interface
interface
subroutine plscmap1_range( min_color, max_color )
use plplot_flt
real(kind=plflt) :: min_color, max_color
end subroutine plscmap1_range
end interface
interface
subroutine plscol0( icol, r, g, b )
integer :: icol, r, g, b
end subroutine plscol0
end interface
interface
subroutine plscol0a( icol, r, g, b, a )
use plplot_flt
integer :: icol, r, g, b
real(kind=plflt) :: a
end subroutine plscol0a
end interface
interface
subroutine plscolbg( r, g, b )
integer :: r, g, b
end subroutine plscolbg
end interface
interface
subroutine plscolbga( r, g, b, a )
use plplot_flt
integer :: r, g, b
real(kind=plflt) :: a
end subroutine plscolbga
end interface
interface
subroutine plscolor( color )
integer :: color
end subroutine plscolor
end interface
interface
subroutine plscompression( compression )
integer :: compression
end subroutine plscompression
end interface
interface
subroutine plsdidev( mar, aspect, jx, jy )
use plplot_flt
real(kind=plflt) :: mar, aspect, jx, jy
end subroutine plsdidev
end interface
interface
subroutine plsdimap( dimxmi, dimxmax, diymin, dimymax, dimxpmm, diypmm )
use plplot_flt
real(kind=plflt) :: dimxmi, dimxmax, diymin, dimymax, dimxpmm, diypmm
end subroutine plsdimap
end interface
interface
subroutine plsdiori( rot )
use plplot_flt
real(kind=plflt) :: rot
end subroutine plsdiori
end interface
interface
subroutine plsdiplt( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plsdiplt
end interface
interface
subroutine plsdiplz( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plsdiplz
end interface
interface
subroutine plseed( s )
integer :: s
end subroutine plseed
end interface
! TODO: character-version
interface
subroutine plsesc( esc )
integer :: esc
end subroutine plsesc
end interface
!
! TODO: F95-specific form for these routines
!
interface plsetmapformc
subroutine plsetmapformc( mapform )
use plplot_flt
interface
subroutine mapform( n, x, y )
use plplot_flt
integer :: n
real(kind=plflt), dimension(*) :: x, y
end subroutine mapform
end interface
end subroutine plsetmapformc
end interface
interface
subroutine plsfam( fam, num, bmax )
integer :: fam, num, bmax
end subroutine plsfam
end interface
interface
subroutine plsfci( fci )
use plplot_flt
integer(kind=plunicode) :: fci
end subroutine plsfci
end interface
interface
subroutine plsfont( family, style, weight )
integer :: family, style, weight
end subroutine plsfont
end interface
interface plslabelfunc
subroutine plslabelfunc_on( labelfunc )
interface
subroutine labelfunc(axis, value, label, length)
use plplot_flt
implicit none
integer :: axis, length
real(kind=plflt) :: value
character*(length) label
end subroutine labelfunc
end interface
end subroutine plslabelfunc_on
subroutine plslabelfunc_off( dummy )
implicit none
integer :: dummy
end subroutine plslabelfunc_off
subroutine plslabelfunc_none
end subroutine plslabelfunc_none
end interface
interface
subroutine plsmaj( def, scale )
use plplot_flt
real(kind=plflt) :: def, scale
end subroutine plsmaj
end interface
! plsmem: void * argument tricky - TODO
! plsmema: void * argument tricky - TODO
interface
subroutine plsmin( def, scale )
use plplot_flt
real(kind=plflt) :: def, scale
end subroutine plsmin
end interface
interface
subroutine plsori( rot )
integer :: rot
end subroutine plsori
end interface
interface
subroutine plspage( xpmm, ypmm, xwid, ywid, xoff, yoff )
use plplot_flt
real(kind=plflt) :: xpmm, ypmm
integer :: xwid, ywid, xoff, yoff
end subroutine plspage
end interface
interface plspause
module procedure plspause
end interface
interface
subroutine plsstrm( strm )
integer :: strm
end subroutine plsstrm
end interface
interface
subroutine plssub( nx, ny )
integer :: nx, ny
end subroutine plssub
end interface
interface
subroutine plssym( def, scale )
use plplot_flt
real(kind=plflt) :: def, scale
end subroutine plssym
end interface
interface
subroutine plstar( nx, ny )
integer :: nx, ny
end subroutine plstar
end interface
interface plstransform
subroutine plstransform1( transformfunc )
interface
subroutine transformfunc(x, y, xt, yt)
use plplot_flt
implicit none
real(kind=plflt) :: x, y, xt, yt
end subroutine transformfunc
end interface
end subroutine plstransform1
subroutine plstransform2( dummy )
implicit none
integer :: dummy
end subroutine plstransform2
subroutine plstransform3
end subroutine plstransform3
end interface
interface
subroutine plstripa( id, pen, x, y )
use plplot_flt
integer :: id, pen
real(kind=plflt) :: x, y
end subroutine plstripa
end interface
interface
subroutine plstripd( id )
integer :: id
end subroutine plstripd
end interface
interface
subroutine plstyl( n, mark, space )
integer :: n, mark, space
end subroutine plstyl
end interface
interface plsurf3d
module procedure plsurf3d
end interface
interface plstripc
module procedure plstripc
end interface
interface plsvect
module procedure plsvect1
subroutine plsvect2
end subroutine plsvect2
end interface
interface
subroutine plsvpa( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plsvpa
end interface
interface
subroutine plsxax( digmax, digits )
integer :: digmax, digits
end subroutine plsxax
end interface
interface
subroutine plsyax( digmax, digits )
integer :: digmax, digits
end subroutine plsyax
end interface
interface plsym
module procedure plsym
end interface
interface
subroutine plszax( digmax, digits )
integer :: digmax, digits
end subroutine plszax
end interface
interface
subroutine pltext
end subroutine pltext
end interface
interface
subroutine plvasp( aspect )
use plplot_flt
real(kind=plflt) :: aspect
end subroutine plvasp
end interface
interface
subroutine plvpas( xmin, xmax, ymin, ymax, aspect )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax, aspect
end subroutine plvpas
end interface
interface
subroutine plvpor( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plvpor
end interface
interface
subroutine plvsta
end subroutine plvsta
end interface
interface
subroutine plw3d( basex, basey, height, xmin, xmax, ymin, ymax, zmin, zmax, alt, az )
use plplot_flt
real(kind=plflt) :: basex, basey, height, xmin, xmax, ymin, ymax, zmin, zmax, alt, az
end subroutine plw3d
end interface
interface
subroutine plwidth( width )
use plplot_flt
real(kind=plflt) :: width
end subroutine plwidth
end interface
interface
subroutine plwind( xmin, xmax, ymin, ymax )
use plplot_flt
real(kind=plflt) :: xmin, xmax, ymin, ymax
end subroutine plwind
end interface
interface plxormod
module procedure plxormod
end interface
private :: convert_to_int
private :: convert_to_log
! -------------------------------------------------------------------
contains
! -------------------------------------------------------------------
integer function convert_to_int( logvalue )
logical :: logvalue
if ( logvalue ) then
convert_to_int = 1
else
convert_to_int = 0
endif
end function convert_to_int
logical function convert_to_log( intvalue )
integer :: intvalue
convert_to_log = intvalue.ne.0
end function convert_to_log
subroutine plbin( x, y, center )
real(kind=plflt), dimension(:) :: x, y
integer :: center
call plbinf95( size(x), x, y, center )
end subroutine plbin
subroutine plcolorbar_1( p_colorbar_width, p_colorbar_height, &
opt, position, x, y, &
x_length, y_length, &
bg_color, bb_color, bb_style, &
low_cap_color, high_cap_color, &
cont_color, cont_width, &
n_labels, label_opts, labels, &
n_axes, axis_opts, ticks, sub_ticks, &
n_values, values)
real (kind=plflt) :: p_colorbar_width, p_colorbar_height
integer :: opt, position, bg_color, bb_color, bb_style, cont_color
integer :: n_labels, n_axes
real (kind=plflt) :: x, y, x_length, y_length, low_cap_color, high_cap_color, cont_width
integer, dimension(:) :: label_opts, sub_ticks, n_values
real (kind=plflt), dimension(:) :: ticks
real (kind=plflt), dimension(:,:) :: values
character(len=*), dimension(:) :: labels, axis_opts
!
! Convert the text arrays and store the results in a convenient
! albeit global location. This way we avoid all manner of complications.
! (Though introducing a potentially nasty one: non-threadsafety)
!
call pllegend07_cnv_text( 3, n_labels, labels )
call pllegend07_cnv_text( 4, n_axes, axis_opts )
call plcolorbar07(p_colorbar_width, p_colorbar_height, &
opt, position, x, y, &
x_length, y_length, &
bg_color, bb_color, bb_style, &
low_cap_color, high_cap_color, &
cont_color, cont_width, &
n_labels, label_opts, n_axes, ticks, sub_ticks, &
n_values, values)
end subroutine plcolorbar_1
subroutine plcolorbar_2( p_colorbar_width, p_colorbar_height, &
opt, position, x, y, &
x_length, y_length, &
bg_color, bb_color, bb_style, &
low_cap_color, high_cap_color, &
cont_color, cont_width, &
label_opts, labels, axis_opts, ticks, sub_ticks, &
n_values, values)
real (kind=plflt) :: p_colorbar_width, p_colorbar_height
integer :: opt, position, bg_color, bb_color, bb_style, cont_color
real (kind=plflt) :: x, y, x_length, y_length, low_cap_color, high_cap_color, cont_width
integer, dimension(:) :: label_opts, sub_ticks, n_values
real (kind=plflt), dimension(:) :: ticks
real (kind=plflt), dimension(:,:) :: values
character(len=*), dimension(:) :: labels, axis_opts
integer :: n_labels, n_axes
n_labels = size(label_opts,1)
n_axes = size(axis_opts,1)
!
! Convert the text arrays and store the results in a convenient
! albeit global location. This way we avoid all manner of complications.
! (Though introducing a potentially nasty one: non-threadsafety)
!
call pllegend07_cnv_text( 3, n_labels, labels )
call pllegend07_cnv_text( 4, n_axes, axis_opts )
call plcolorbar07(p_colorbar_width, p_colorbar_height, &
opt, position, x, y, &
x_length, y_length, &
bg_color, bb_color, bb_style, &
low_cap_color, high_cap_color, &
cont_color, cont_width, &
n_labels, label_opts, n_axes, ticks, sub_ticks, &
n_values, values)
end subroutine plcolorbar_2
subroutine plcpstrm( iplsr, flags )
integer :: iplsr
logical :: flags
integer :: iflags
iflags = convert_to_int( flags )
call plcpstrmf95( iplsr, iflags )
end subroutine plcpstrm
subroutine plerrx( xmin, xmax, y )
real(kind=plflt), dimension(:) :: xmin, xmax, y
call plerrxf95( size(xmin), xmin, xmax, y )
end subroutine plerrx
subroutine plerry( x, ymin, ymax )
real(kind=plflt), dimension(:) :: x, ymin, ymax
call plerryf95( size(x), x, ymin, ymax )
end subroutine plerry
subroutine plfill( x, y )
real(kind=plflt), dimension(:) :: x, y
call plfillf95( size(x), x, y )
end subroutine plfill
subroutine plfill3( x, y, z )
real(kind=plflt), dimension(:) :: x, y, z
call plfill3f95( size(x), x, y, z )
end subroutine plfill3
subroutine plgradient( x, y, angle )
real(kind=plflt), dimension(:) :: x, y
real(kind=plflt) :: angle
call plgradientf95( size(x), x, y, angle )
end subroutine plgradient
subroutine plgriddata( x, y, z, xg, yg, zg, type, data )
real(kind=plflt), dimension(:) :: x, y, z, xg, yg
real(kind=plflt), dimension(:,:) :: zg
real(kind=plflt) :: data
integer :: type
call plgriddataf95( x, y, z, size(x), xg, size(xg), yg, size(yg), zg, &
type, data )
return
end subroutine plgriddata
subroutine plhist( data, datmin, datmax, nbin, oldwin )
real(kind=plflt), dimension(:) :: data
real(kind=plflt) :: datmin, datmax
integer :: nbin, oldwin
call plhistf95( size(data), data, datmin, datmax, nbin, oldwin )
end subroutine plhist
! subroutine plimagefr( idata, xmin, xmax, ymin, ymax, zmin, zmax, &
! dxmin, dxmax, dymin, dymax, valuemin, valuemax )
! real(kind=plflt), dimension(:,:) :: idata
! real(kind=plflt) :: xmin, xmax, ymin, ymax, zmin, zmax
! real(kind=plflt) :: dxmin, dxmax, dymin, dymax, &
! valuemin, valuemax
!
! integer :: nx, ny
!
! nx = size(idata,1)
! ny = size(idata,2)
! call plimagefrf95( idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, &
! dxmin, dxmax, dymin, dymax, valuemin, valuemax )
! end subroutine plimagefr
subroutine plimage( idata, xmin, xmax, ymin, ymax, zmin, zmax, &
dxmin, dxmax, dymin, dymax )
real(kind=plflt), dimension(:,:) :: idata
real(kind=plflt) :: xmin, xmax, ymin, ymax, zmin, zmax
real(kind=plflt) :: dxmin, dxmax, dymin, dymax
integer :: nx, ny
nx = size(idata,1)
ny = size(idata,2)
call plimagef95( idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, &
dxmin, dxmax, dymin, dymax )
end subroutine plimage
subroutine pllegend_1( legend_width, legend_height, &
opt, position, x, y, &
plot_width, bg_color, bb_color, bb_style, &
nrow, ncolumn, nlegend, opt_array, &
text_offset, text_scale, text_spacing, &
text_justification, text_colors, text, &
box_colors, box_patterns, box_scales, &
box_line_widths, &
line_colors, line_styles, line_widths, &
symbol_colors, symbol_scales, &
symbol_numbers, symbols )
real(kind=plflt) :: legend_width, legend_height, plot_width, x, y
real(kind=plflt) :: text_offset, text_scale, text_spacing, text_justification
integer :: position, opt, bg_color, bb_color, bb_style
integer :: nrow, ncolumn, nlegend
character(len=*), dimension(:) :: text, symbols
integer, dimension(:) :: opt_array, text_colors, box_colors
integer, dimension(:) :: box_patterns
real(kind=plflt), dimension(:) :: box_line_widths
integer, dimension(:) :: line_colors, line_styles
real(kind=plflt), dimension(:) :: line_widths
integer, dimension(:) :: symbol_colors, symbol_numbers
real(kind=plflt), dimension(:) :: box_scales, symbol_scales
!
! Convert the text arrays and store the results in a convenient
! albeit global location. This way we avoid all manner of complications.
! (Though introducing a potentially nasty one: non-threadsafety)
!
call pllegend07_cnv_text( 1, nlegend, text )
call pllegend07_cnv_text( 2, nlegend, symbols )
call pllegend07( legend_width, legend_height, opt, position, x, y, &
plot_width, bg_color, bb_color, bb_style, &
nrow, ncolumn, nlegend, opt_array, &
text_offset, text_scale, text_spacing, &
text_justification, text_colors, &
box_colors, box_patterns, box_scales, &
box_line_widths, &
line_colors, line_styles, line_widths, &
symbol_colors, symbol_scales, &
symbol_numbers )
end subroutine pllegend_1
subroutine pllegend_2( legend_width, legend_height, &
opt, position, x, y, &
plot_width, bg_color, bb_color, bb_style, &
nrow, ncolumn, opt_array, &
text_offset, text_scale, text_spacing, &
text_justification, text_colors, text, &
box_colors, box_patterns, box_scales, &
box_line_widths, &
line_colors, line_styles, line_widths, &
symbol_colors, symbol_scales, &
symbol_numbers, symbols )
real(kind=plflt) :: legend_width, legend_height, plot_width, x, y
real(kind=plflt) :: text_offset, text_scale, text_spacing, text_justification
integer :: position, opt, bg_color, bb_color, bb_style
integer :: nrow, ncolumn
character(len=*), dimension(:) :: text, symbols
integer, dimension(:) :: opt_array, text_colors, box_colors
integer, dimension(:) :: box_patterns
real(kind=plflt), dimension(:) :: box_line_widths
integer, dimension(:) :: line_colors, line_styles
real(kind=plflt), dimension(:) :: line_widths
integer, dimension(:) :: symbol_colors, symbol_numbers
real(kind=plflt), dimension(:) :: box_scales, symbol_scales
integer :: nlegend
!
! Determine number of legend entries
!
nlegend = min( size(opt_array), size(text) )
call pllegend_1( legend_width, legend_height, &
opt, position, x, y, &
plot_width, bg_color, bb_color, bb_style, &
nrow, ncolumn, nlegend, opt_array, &
text_offset, text_scale, text_spacing, &
text_justification, text_colors, text, &
box_colors, box_patterns, box_scales, &
box_line_widths, &
line_colors, line_styles, line_widths, &
symbol_colors, symbol_scales, &
symbol_numbers, symbols )
end subroutine pllegend_2
subroutine plline( x, y )
real(kind=plflt), dimension(:) :: x, y
call pllinef95( size(x), x, y )
end subroutine plline
subroutine plline3( x, y, z )
real(kind=plflt), dimension(:) :: x, y, z
call plline3f95( size(x), x, y, z )
end subroutine plline3
subroutine plmap1(mapform,mapname,minx,maxx,miny,maxy)
use plplot_flt
use plplot_str
implicit none
real(kind=plflt) minx, maxx, miny, maxy
character*(*) mapname
external mapform
call plstrf2c(mapname, string1)
call plsetmapformc(mapform)
s1 = transfer( string1, s1 )
call plmap7(s1,minx,maxx,miny,maxy)
end subroutine plmap1
subroutine plmap2(mapname,minx,maxx,miny,maxy)
use plplot_flt
use plplot_str
implicit none
real(kind=plflt) minx, maxx, miny, maxy
character*(*) mapname
call plstrf2c(mapname, string1)
call plclearmapformc()
s1 = transfer( string1, s1 )
call plmap7(s1,minx,maxx,miny,maxy)
end subroutine plmap2
subroutine plmeridians1(mapform,dlong,dlat,minlong,maxlong, &
minlat,maxlat)
implicit none
real(kind=plflt) dlong, dlat, minlong, maxlong, minlat, maxlat
external mapform
call plsetmapformc(mapform)
call plmeridians7(dlong,dlat,minlong,maxlong,minlat,maxlat)
end subroutine plmeridians1
subroutine plmeridians2(dlong,dlat,minlong,maxlong, &
minlat,maxlat)
implicit none
real(kind=plflt) dlong, dlat, minlong, maxlong, minlat, maxlat
call plclearmapformc
call plmeridians7(dlong,dlat,minlong,maxlong,minlat,maxlat)
end subroutine plmeridians2
subroutine plmesh( x, y, z, opt )
integer :: opt
real(kind=plflt), dimension(:) :: x, y
real(kind=plflt), dimension(:,:) :: z
call plmeshf95( x, y, z, size(x), size(y), opt, size(x))
end subroutine plmesh
subroutine plmeshc( x, y, z, opt, clevel )
integer :: opt
real(kind=plflt), dimension(:) :: x, y, clevel
real(kind=plflt), dimension(:,:) :: z
call plmeshcf95( x, y, z, size(x), size(y), opt, &
clevel, size(clevel), size(x))
end subroutine plmeshc
subroutine plot3d( x, y, z, opt, side )
integer :: opt
logical :: side
real(kind=plflt), dimension(:) :: x, y
real(kind=plflt), dimension(:,:) :: z
integer :: iside
iside = convert_to_int(side)
call plot3df95( x, y, z, size(x), size(y), opt, iside, size(x))
end subroutine plot3d
subroutine plot3dc( x, y, z, opt, clevel )
integer :: opt
real(kind=plflt), dimension(:) :: x, y, clevel
real(kind=plflt), dimension(:,:) :: z
call plot3dcf95( x, y, z, size(x), size(y), opt, clevel, &
size(clevel), size(x))
end subroutine plot3dc
subroutine plspause( lpause )
logical :: lpause
integer :: ipause
ipause = convert_to_int( lpause )
call plspausef95( ipause )
end subroutine plspause
subroutine plsurf3d( x, y, z, opt, clevel )
integer :: opt
real(kind=plflt), dimension(:) :: x, y, clevel
real(kind=plflt), dimension(:,:) :: z
call plsurf3df95( x, y, z, size(x), size(y), opt, clevel, &
size(clevel), size(x))
end subroutine plsurf3d
subroutine plpoin( x, y, code )
integer :: code
real(kind=plflt), dimension(:) :: x, y
call plpoinf95( size(x), x, y, code )
end subroutine plpoin
subroutine plpoin3( x, y, z, code )
integer :: code
real(kind=plflt), dimension(:) :: x, y, z
call plpoin3f95( size(x), x, y, z, code )
end subroutine plpoin3
subroutine plpoly3( x, y, z, draw, ifcc )
logical :: ifcc
logical, dimension(:) :: draw
real(kind=plflt), dimension(:) :: x, y, z
integer, dimension(size(draw)) :: idraw
integer :: i
integer :: iifcc
iifcc = convert_to_int( ifcc )
do i = 1,size(draw)
idraw(i) = convert_to_int( draw(i) )
enddo
call plpoly3f95( size(x), x, y, z, idraw, iifcc )
end subroutine plpoly3
real (kind=plflt) function plrandd()
external plranddf95
real(kind=plflt) :: plranddf95
plrandd = plranddf95()
end function plrandd
subroutine plscmap0( r, g, b )
integer, dimension(:) :: r, g, b
call plscmap0f95( r, g, b, size(r) )
end subroutine plscmap0
subroutine plscmap0a( r, g, b, a )
integer, dimension(:) :: r, g, b
real(kind=plflt), dimension(:) :: a
call plscmap0af95( r, g, b, a, size(r) )
end subroutine plscmap0a
subroutine plscmap1( r, g, b )
integer, dimension(:) :: r, g, b
call plscmap1f95( r, g, b, size(r) )
end subroutine plscmap1
subroutine plscmap1a( r, g, b, a )
integer, dimension(:) :: r, g, b
real(kind=plflt), dimension(:) :: a
call plscmap1af95( r, g, b, a, size(r) )
end subroutine plscmap1a
subroutine plscmap1l( rgbtype, intensity, coord1, coord2, coord3, alt_hue_path)
logical :: rgbtype
real(kind=plflt), dimension(:) :: intensity, coord1, coord2, coord3
logical, dimension(:) :: alt_hue_path
integer, dimension(size(alt_hue_path)) :: ialt_hue_path
integer :: i
integer :: type
type = convert_to_int( rgbtype )
do i = 1,size(alt_hue_path)
ialt_hue_path(i) = convert_to_int( alt_hue_path(i) )
enddo
call plscmap1lf95( type, size(intensity), intensity, coord1, coord2, coord3, ialt_hue_path )
end subroutine plscmap1l
subroutine plscmap1l2( rgbtype, intensity, coord1, coord2, coord3)
logical :: rgbtype
real(kind=plflt), dimension(:) :: intensity, coord1, coord2, coord3
integer :: type
type = convert_to_int( rgbtype )
call plscmap1l2f95( type, size(intensity), intensity, coord1, coord2, coord3)
end subroutine plscmap1l2
subroutine plscmap1la( rgbtype, intensity, coord1, coord2, coord3, a, alt_hue_path)
logical :: rgbtype
real(kind=plflt), dimension(:) :: intensity, coord1, coord2, coord3, a
logical, dimension(:) :: alt_hue_path
integer, dimension(size(alt_hue_path)) :: ialt_hue_path
integer :: i
integer :: type
type = convert_to_int( rgbtype )
do i = 1,size(alt_hue_path)
ialt_hue_path(i) = convert_to_int( alt_hue_path(i) )
enddo
call plscmap1laf95( type, size(intensity), intensity, coord1, coord2, coord3, a, ialt_hue_path )
end subroutine plscmap1la
subroutine plscmap1la2( rgbtype, intensity, coord1, coord2, coord3, a)
logical :: rgbtype
real(kind=plflt), dimension(:) :: intensity, coord1, coord2, coord3, a
integer :: type
type = convert_to_int( rgbtype )
call plscmap1la2f95( type, size(intensity), intensity, coord1, coord2, coord3, a)
end subroutine plscmap1la2
subroutine plstripc(id, xspec, yspec, xmin, xmax, xjump, &
ymin, ymax, xlpos, ylpos, y_ascl, acc, &
colbox, collab, colline, styline, legline, &
labx, laby, labtop)
! use plplot_str
implicit none
integer id, colbox, collab, colline(4), styline(4)
character*(*) xspec, yspec, legline(4), labx, laby, labtop
real(kind=plflt) xmin, xmax, xjump, ymin, ymax, xlpos, ylpos
logical y_ascl, acc
integer iy_ascl, iacc
call plstrf2c(xspec, string1)
call plstrf2c(yspec, string2)
call plstrf2c(legline(1), string3)
call plstrf2c(legline(2), string4)
call plstrf2c(legline(3), string5)
call plstrf2c(legline(4), string6)
call plstrf2c(labx, string7)
call plstrf2c(laby, string8)
call plstrf2c(labtop, string9)
iy_ascl = convert_to_int( y_ascl )
iacc = convert_to_int( acc )
s1 = transfer( string1, s1 )
s2 = transfer( string2, s2 )
s3 = transfer( string3, s3 )
s4 = transfer( string4, s4 )
s5 = transfer( string5, s5 )
s6 = transfer( string6, s6 )
s7 = transfer( string7, s7 )
s8 = transfer( string8, s8 )
s9 = transfer( string9, s9 )
call plstripcf95(id, s1, s2, xmin, xmax, xjump, &
ymin, ymax, xlpos, ylpos, iy_ascl, iacc, &
colbox, collab, colline, styline, &
s3, s4, s5, s6, &
s7, s8, s9)
end subroutine plstripc
subroutine plsvect1( arrowx, arrowy, fill )
logical :: fill
real(kind=plflt), dimension(:) :: arrowx, arrowy
integer ifill
ifill = convert_to_int(fill)
call plsvect1f95( arrowx, arrowy, size(arrowx), ifill )
end subroutine plsvect1
subroutine plsym( x, y, code )
integer :: code
real(kind=plflt), dimension(:) :: x, y
call plsymf95( size(x), x, y, code )
end subroutine plsym
subroutine plxormod( mode, status )
logical :: mode, status
integer :: imode, istatus
imode = convert_to_int(mode)
call plxormodf95( imode, istatus)
status = convert_to_log(istatus)
end subroutine plxormod
end module plplot
|