Newer
Older
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
@menu
@ifset familyF2U
* Abort Intrinsic:: Abort the program.
@end ifset
@ifset familyF77
* Abs Intrinsic:: Absolute value.
@end ifset
@ifset familyF2U
* Access Intrinsic:: Check file accessibility.
@end ifset
@ifset familyASC
* AChar Intrinsic:: ASCII character from code.
@end ifset
@ifset familyF77
* ACos Intrinsic:: Arc cosine.
@end ifset
@ifset familyVXT
* ACosD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* AdjustL Intrinsic:: (Reserved for future use.)
* AdjustR Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* AImag Intrinsic:: Convert/extract imaginary part of complex.
@end ifset
@ifset familyVXT
* AIMax0 Intrinsic:: (Reserved for future use.)
* AIMin0 Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* AInt Intrinsic:: Truncate to whole number.
@end ifset
@ifset familyVXT
* AJMax0 Intrinsic:: (Reserved for future use.)
* AJMin0 Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Alarm Intrinsic:: Execute a routine after a given delay.
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
@end ifset
@ifset familyF90
* All Intrinsic:: (Reserved for future use.)
* Allocated Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* ALog Intrinsic:: Natural logarithm (archaic).
* ALog10 Intrinsic:: Natural logarithm (archaic).
* AMax0 Intrinsic:: Maximum value (archaic).
* AMax1 Intrinsic:: Maximum value (archaic).
* AMin0 Intrinsic:: Minimum value (archaic).
* AMin1 Intrinsic:: Minimum value (archaic).
* AMod Intrinsic:: Remainder (archaic).
@end ifset
@ifset familyF2C
* And Intrinsic:: Boolean AND.
@end ifset
@ifset familyF77
* ANInt Intrinsic:: Round to nearest whole number.
@end ifset
@ifset familyF90
* Any Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* ASin Intrinsic:: Arc sine.
@end ifset
@ifset familyVXT
* ASinD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* Associated Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* ATan Intrinsic:: Arc tangent.
* ATan2 Intrinsic:: Arc tangent.
@end ifset
@ifset familyVXT
* ATan2D Intrinsic:: (Reserved for future use.)
* ATanD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* BesJ0 Intrinsic:: Bessel function.
* BesJ1 Intrinsic:: Bessel function.
* BesJN Intrinsic:: Bessel function.
* BesY0 Intrinsic:: Bessel function.
* BesY1 Intrinsic:: Bessel function.
* BesYN Intrinsic:: Bessel function.
@end ifset
@ifset familyVXT
* BITest Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* Bit_Size Intrinsic:: Number of bits in argument's type.
@end ifset
@ifset familyVXT
* BJTest Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyMIL
* BTest Intrinsic:: Test bit.
@end ifset
@ifset familyF77
* CAbs Intrinsic:: Absolute value (archaic).
* CCos Intrinsic:: Cosine (archaic).
@end ifset
@ifset familyFVZ
* CDAbs Intrinsic:: Absolute value (archaic).
* CDCos Intrinsic:: Cosine (archaic).
* CDExp Intrinsic:: Exponential (archaic).
* CDLog Intrinsic:: Natural logarithm (archaic).
* CDSin Intrinsic:: Sine (archaic).
* CDSqRt Intrinsic:: Square root (archaic).
@end ifset
@ifset familyF90
* Ceiling Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* CExp Intrinsic:: Exponential (archaic).
* Char Intrinsic:: Character from code.
@end ifset
@ifset familyF2U
* ChDir Intrinsic (subroutine):: Change directory.
@end ifset
@ifset familyBADU77
* ChDir Intrinsic (function):: Change directory.
@end ifset
@ifset familyF2U
* ChMod Intrinsic (subroutine):: Change file modes.
@end ifset
@ifset familyBADU77
* ChMod Intrinsic (function):: Change file modes.
@end ifset
@ifset familyF77
* CLog Intrinsic:: Natural logarithm (archaic).
* Cmplx Intrinsic:: Construct @code{COMPLEX(KIND=1)} value.
@end ifset
@ifset familyGNU
* Complex Intrinsic:: Build complex value from real and
imaginary parts.
@end ifset
@ifset familyF77
* Conjg Intrinsic:: Complex conjugate.
* Cos Intrinsic:: Cosine.
@end ifset
@ifset familyVXT
* CosD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* CosH Intrinsic:: Hyperbolic cosine.
@end ifset
@ifset familyF90
* Count Intrinsic:: (Reserved for future use.)
* Cpu_Time Intrinsic:: Get current CPU time.
* CShift Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* CSin Intrinsic:: Sine (archaic).
* CSqRt Intrinsic:: Square root (archaic).
@end ifset
@ifset familyF2U
* CTime Intrinsic (subroutine):: Convert time to Day Mon dd hh:mm:ss yyyy.
* CTime Intrinsic (function):: Convert time to Day Mon dd hh:mm:ss yyyy.
@end ifset
@ifset familyF77
* DAbs Intrinsic:: Absolute value (archaic).
* DACos Intrinsic:: Arc cosine (archaic).
@end ifset
@ifset familyVXT
* DACosD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DASin Intrinsic:: Arc sine (archaic).
@end ifset
@ifset familyVXT
* DASinD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DATan Intrinsic:: Arc tangent (archaic).
* DATan2 Intrinsic:: Arc tangent (archaic).
@end ifset
@ifset familyVXT
* DATan2D Intrinsic:: (Reserved for future use.)
* DATanD Intrinsic:: (Reserved for future use.)
* Date Intrinsic:: Get current date as dd-Mon-yy.
@end ifset
@ifset familyF90
* Date_and_Time Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* DbesJ0 Intrinsic:: Bessel function (archaic).
* DbesJ1 Intrinsic:: Bessel function (archaic).
* DbesJN Intrinsic:: Bessel function (archaic).
* DbesY0 Intrinsic:: Bessel function (archaic).
* DbesY1 Intrinsic:: Bessel function (archaic).
* DbesYN Intrinsic:: Bessel function (archaic).
@end ifset
@ifset familyF77
* Dble Intrinsic:: Convert to double precision.
@end ifset
@ifset familyVXT
* DbleQ Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyFVZ
* DCmplx Intrinsic:: Construct @code{COMPLEX(KIND=2)} value.
* DConjg Intrinsic:: Complex conjugate (archaic).
@end ifset
@ifset familyF77
* DCos Intrinsic:: Cosine (archaic).
@end ifset
@ifset familyVXT
* DCosD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DCosH Intrinsic:: Hyperbolic cosine (archaic).
* DDiM Intrinsic:: Difference magnitude (archaic).
@end ifset
@ifset familyF2U
* DErF Intrinsic:: Error function (archaic).
* DErFC Intrinsic:: Complementary error function (archaic).
@end ifset
@ifset familyF77
* DExp Intrinsic:: Exponential (archaic).
@end ifset
@ifset familyFVZ
* DFloat Intrinsic:: Conversion (archaic).
@end ifset
@ifset familyVXT
* DFlotI Intrinsic:: (Reserved for future use.)
* DFlotJ Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* Digits Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DiM Intrinsic:: Difference magnitude (non-negative subtract).
@end ifset
@ifset familyFVZ
* DImag Intrinsic:: Convert/extract imaginary part of complex (archaic).
@end ifset
@ifset familyF77
* DInt Intrinsic:: Truncate to whole number (archaic).
* DLog Intrinsic:: Natural logarithm (archaic).
* DLog10 Intrinsic:: Natural logarithm (archaic).
* DMax1 Intrinsic:: Maximum value (archaic).
* DMin1 Intrinsic:: Minimum value (archaic).
* DMod Intrinsic:: Remainder (archaic).
* DNInt Intrinsic:: Round to nearest whole number (archaic).
@end ifset
@ifset familyF90
* Dot_Product Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DProd Intrinsic:: Double-precision product.
@end ifset
@ifset familyVXT
* DReal Intrinsic:: Convert value to type @code{REAL(KIND=2)}.
@end ifset
@ifset familyF77
* DSign Intrinsic:: Apply sign to magnitude (archaic).
* DSin Intrinsic:: Sine (archaic).
@end ifset
@ifset familyVXT
* DSinD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DSinH Intrinsic:: Hyperbolic sine (archaic).
* DSqRt Intrinsic:: Square root (archaic).
* DTan Intrinsic:: Tangent (archaic).
@end ifset
@ifset familyVXT
* DTanD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* DTanH Intrinsic:: Hyperbolic tangent (archaic).
@end ifset
@ifset familyF2U
* Dtime Intrinsic (subroutine):: Get elapsed time since last time.
@end ifset
@ifset familyBADU77
* Dtime Intrinsic (function):: Get elapsed time since last time.
@end ifset
@ifset familyF90
* EOShift Intrinsic:: (Reserved for future use.)
* Epsilon Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* ErF Intrinsic:: Error function.
* ErFC Intrinsic:: Complementary error function.
* ETime Intrinsic (subroutine):: Get elapsed time for process.
* ETime Intrinsic (function):: Get elapsed time for process.
* Exit Intrinsic:: Terminate the program.
@end ifset
@ifset familyF77
* Exp Intrinsic:: Exponential.
@end ifset
@ifset familyF90
* Exponent Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Fdate Intrinsic (subroutine):: Get current time as Day Mon dd hh:mm:ss yyyy.
* Fdate Intrinsic (function):: Get current time as Day Mon dd hh:mm:ss yyyy.
* FGet Intrinsic (subroutine):: Read a character from unit 5 stream-wise.
@end ifset
@ifset familyBADU77
* FGet Intrinsic (function):: Read a character from unit 5 stream-wise.
@end ifset
@ifset familyF2U
* FGetC Intrinsic (subroutine):: Read a character stream-wise.
@end ifset
@ifset familyBADU77
* FGetC Intrinsic (function):: Read a character stream-wise.
@end ifset
@ifset familyF77
* Float Intrinsic:: Conversion (archaic).
@end ifset
@ifset familyVXT
* FloatI Intrinsic:: (Reserved for future use.)
* FloatJ Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* Floor Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Flush Intrinsic:: Flush buffered output.
* FNum Intrinsic:: Get file descriptor from Fortran unit number.
* FPut Intrinsic (subroutine):: Write a character to unit 6 stream-wise.
@end ifset
@ifset familyBADU77
* FPut Intrinsic (function):: Write a character to unit 6 stream-wise.
@end ifset
@ifset familyF2U
* FPutC Intrinsic (subroutine):: Write a character stream-wise.
@end ifset
@ifset familyBADU77
* FPutC Intrinsic (function):: Write a character stream-wise.
@end ifset
@ifset familyF90
* Fraction Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* FSeek Intrinsic:: Position file (low-level).
* FStat Intrinsic (subroutine):: Get file information.
* FStat Intrinsic (function):: Get file information.
* FTell Intrinsic (subroutine):: Get file position (low-level).
* FTell Intrinsic (function):: Get file position (low-level).
* GError Intrinsic:: Get error message for last error.
* GetArg Intrinsic:: Obtain command-line argument.
* GetCWD Intrinsic (subroutine):: Get current working directory.
* GetCWD Intrinsic (function):: Get current working directory.
* GetEnv Intrinsic:: Get environment variable.
* GetGId Intrinsic:: Get process group id.
* GetLog Intrinsic:: Get login name.
* GetPId Intrinsic:: Get process id.
* GetUId Intrinsic:: Get process user id.
* GMTime Intrinsic:: Convert time to GMT time info.
* HostNm Intrinsic (subroutine):: Get host name.
* HostNm Intrinsic (function):: Get host name.
@end ifset
@ifset familyF90
* Huge Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* IAbs Intrinsic:: Absolute value (archaic).
@end ifset
@ifset familyASC
* IAChar Intrinsic:: ASCII code for character.
@end ifset
@ifset familyMIL
* IAnd Intrinsic:: Boolean AND.
@end ifset
@ifset familyF2U
* IArgC Intrinsic:: Obtain count of command-line arguments.
@end ifset
@ifset familyMIL
* IBClr Intrinsic:: Clear a bit.
* IBits Intrinsic:: Extract a bit subfield of a variable.
* IBSet Intrinsic:: Set a bit.
@end ifset
@ifset familyF77
* IChar Intrinsic:: Code for character.
@end ifset
@ifset familyF2U
* IDate Intrinsic (UNIX):: Get local time info.
@end ifset
@ifset familyVXT
* IDate Intrinsic (VXT):: Get local time info (VAX/VMS).
@end ifset
@ifset familyF77
* IDiM Intrinsic:: Difference magnitude (archaic).
* IDInt Intrinsic:: Convert to @code{INTEGER} value truncated
to whole number (archaic).
* IDNInt Intrinsic:: Convert to @code{INTEGER} value rounded
to nearest whole number (archaic).
@end ifset
@ifset familyMIL
* IEOr Intrinsic:: Boolean XOR.
@end ifset
@ifset familyF2U
* IErrNo Intrinsic:: Get error number for last error.
@end ifset
@ifset familyF77
* IFix Intrinsic:: Conversion (archaic).
@end ifset
@ifset familyVXT
* IIAbs Intrinsic:: (Reserved for future use.)
* IIAnd Intrinsic:: (Reserved for future use.)
* IIBClr Intrinsic:: (Reserved for future use.)
* IIBits Intrinsic:: (Reserved for future use.)
* IIBSet Intrinsic:: (Reserved for future use.)
* IIDiM Intrinsic:: (Reserved for future use.)
* IIDInt Intrinsic:: (Reserved for future use.)
* IIDNnt Intrinsic:: (Reserved for future use.)
* IIEOr Intrinsic:: (Reserved for future use.)
* IIFix Intrinsic:: (Reserved for future use.)
* IInt Intrinsic:: (Reserved for future use.)
* IIOr Intrinsic:: (Reserved for future use.)
* IIQint Intrinsic:: (Reserved for future use.)
* IIQNnt Intrinsic:: (Reserved for future use.)
* IIShftC Intrinsic:: (Reserved for future use.)
* IISign Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2C
* Imag Intrinsic:: Extract imaginary part of complex.
@end ifset
@ifset familyGNU
* ImagPart Intrinsic:: Extract imaginary part of complex.
@end ifset
@ifset familyVXT
* IMax0 Intrinsic:: (Reserved for future use.)
* IMax1 Intrinsic:: (Reserved for future use.)
* IMin0 Intrinsic:: (Reserved for future use.)
* IMin1 Intrinsic:: (Reserved for future use.)
* IMod Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Index Intrinsic:: Locate a CHARACTER substring.
@end ifset
@ifset familyVXT
* INInt Intrinsic:: (Reserved for future use.)
* INot Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Int Intrinsic:: Convert to @code{INTEGER} value truncated
to whole number.
@end ifset
@ifset familyGNU
* Int2 Intrinsic:: Convert to @code{INTEGER(KIND=6)} value
truncated to whole number.
* Int8 Intrinsic:: Convert to @code{INTEGER(KIND=2)} value
truncated to whole number.
@end ifset
@ifset familyMIL
* IOr Intrinsic:: Boolean OR.
@end ifset
@ifset familyF2U
* IRand Intrinsic:: Random number.
* IsaTty Intrinsic:: Is unit connected to a terminal?
@end ifset
@ifset familyMIL
* IShft Intrinsic:: Logical bit shift.
* IShftC Intrinsic:: Circular bit shift.
@end ifset
@ifset familyF77
* ISign Intrinsic:: Apply sign to magnitude (archaic).
@end ifset
@ifset familyF2U
* ITime Intrinsic:: Get local time of day.
@end ifset
@ifset familyVXT
* IZExt Intrinsic:: (Reserved for future use.)
* JIAbs Intrinsic:: (Reserved for future use.)
* JIAnd Intrinsic:: (Reserved for future use.)
* JIBClr Intrinsic:: (Reserved for future use.)
* JIBits Intrinsic:: (Reserved for future use.)
* JIBSet Intrinsic:: (Reserved for future use.)
* JIDiM Intrinsic:: (Reserved for future use.)
* JIDInt Intrinsic:: (Reserved for future use.)
* JIDNnt Intrinsic:: (Reserved for future use.)
* JIEOr Intrinsic:: (Reserved for future use.)
* JIFix Intrinsic:: (Reserved for future use.)
* JInt Intrinsic:: (Reserved for future use.)
* JIOr Intrinsic:: (Reserved for future use.)
* JIQint Intrinsic:: (Reserved for future use.)
* JIQNnt Intrinsic:: (Reserved for future use.)
* JIShft Intrinsic:: (Reserved for future use.)
* JIShftC Intrinsic:: (Reserved for future use.)
* JISign Intrinsic:: (Reserved for future use.)
* JMax0 Intrinsic:: (Reserved for future use.)
* JMax1 Intrinsic:: (Reserved for future use.)
* JMin0 Intrinsic:: (Reserved for future use.)
* JMin1 Intrinsic:: (Reserved for future use.)
* JMod Intrinsic:: (Reserved for future use.)
* JNInt Intrinsic:: (Reserved for future use.)
* JNot Intrinsic:: (Reserved for future use.)
* JZExt Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Kill Intrinsic (subroutine):: Signal a process.
@end ifset
@ifset familyBADU77
* Kill Intrinsic (function):: Signal a process.
@end ifset
@ifset familyF90
* Kind Intrinsic:: (Reserved for future use.)
* LBound Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Len Intrinsic:: Length of character entity.
@end ifset
@ifset familyF90
* Len_Trim Intrinsic:: Get last non-blank character in string.
@end ifset
@ifset familyF77
* LGe Intrinsic:: Lexically greater than or equal.
* LGt Intrinsic:: Lexically greater than.
@end ifset
@ifset familyF2U
* Link Intrinsic (subroutine):: Make hard link in file system.
@end ifset
@ifset familyBADU77
* Link Intrinsic (function):: Make hard link in file system.
@end ifset
@ifset familyF77
* LLe Intrinsic:: Lexically less than or equal.
* LLt Intrinsic:: Lexically less than.
@end ifset
@ifset familyF2U
* LnBlnk Intrinsic:: Get last non-blank character in string.
* Loc Intrinsic:: Address of entity in core.
@end ifset
@ifset familyF77
* Log Intrinsic:: Natural logarithm.
* Log10 Intrinsic:: Natural logarithm.
@end ifset
@ifset familyF90
* Logical Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Long Intrinsic:: Conversion to @code{INTEGER(KIND=1)} (archaic).
@end ifset
@ifset familyF2C
* LShift Intrinsic:: Left-shift bits.
@end ifset
@ifset familyF2U
* LStat Intrinsic (subroutine):: Get file information.
* LStat Intrinsic (function):: Get file information.
* LTime Intrinsic:: Convert time to local time info.
@end ifset
@ifset familyF90
* MatMul Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Max Intrinsic:: Maximum value.
* Max0 Intrinsic:: Maximum value (archaic).
* Max1 Intrinsic:: Maximum value (archaic).
@end ifset
@ifset familyF90
* MaxExponent Intrinsic:: (Reserved for future use.)
* MaxLoc Intrinsic:: (Reserved for future use.)
* MaxVal Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* MClock Intrinsic:: Get number of clock ticks for process.
* MClock8 Intrinsic:: Get number of clock ticks for process.
@end ifset
@ifset familyF90
* Merge Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Min Intrinsic:: Minimum value.
* Min0 Intrinsic:: Minimum value (archaic).
* Min1 Intrinsic:: Minimum value (archaic).
@end ifset
@ifset familyF90
* MinExponent Intrinsic:: (Reserved for future use.)
* MinLoc Intrinsic:: (Reserved for future use.)
* MinVal Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Mod Intrinsic:: Remainder.
@end ifset
@ifset familyF90
* Modulo Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyMIL
* MvBits Intrinsic:: Moving a bit field.
@end ifset
@ifset familyF90
* Nearest Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* NInt Intrinsic:: Convert to @code{INTEGER} value rounded
to nearest whole number.
@end ifset
@ifset familyMIL
* Not Intrinsic:: Boolean NOT.
@end ifset
@ifset familyF2C
* Or Intrinsic:: Boolean OR.
@end ifset
@ifset familyF90
* Pack Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* PError Intrinsic:: Print error message for last error.
@end ifset
@ifset familyF90
* Precision Intrinsic:: (Reserved for future use.)
* Present Intrinsic:: (Reserved for future use.)
* Product Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyVXT
* QAbs Intrinsic:: (Reserved for future use.)
* QACos Intrinsic:: (Reserved for future use.)
* QACosD Intrinsic:: (Reserved for future use.)
* QASin Intrinsic:: (Reserved for future use.)
* QASinD Intrinsic:: (Reserved for future use.)
* QATan Intrinsic:: (Reserved for future use.)
* QATan2 Intrinsic:: (Reserved for future use.)
* QATan2D Intrinsic:: (Reserved for future use.)
* QATanD Intrinsic:: (Reserved for future use.)
* QCos Intrinsic:: (Reserved for future use.)
* QCosD Intrinsic:: (Reserved for future use.)
* QCosH Intrinsic:: (Reserved for future use.)
* QDiM Intrinsic:: (Reserved for future use.)
* QExp Intrinsic:: (Reserved for future use.)
* QExt Intrinsic:: (Reserved for future use.)
* QExtD Intrinsic:: (Reserved for future use.)
* QFloat Intrinsic:: (Reserved for future use.)
* QInt Intrinsic:: (Reserved for future use.)
* QLog Intrinsic:: (Reserved for future use.)
* QLog10 Intrinsic:: (Reserved for future use.)
* QMax1 Intrinsic:: (Reserved for future use.)
* QMin1 Intrinsic:: (Reserved for future use.)
* QMod Intrinsic:: (Reserved for future use.)
* QNInt Intrinsic:: (Reserved for future use.)
* QSin Intrinsic:: (Reserved for future use.)
* QSinD Intrinsic:: (Reserved for future use.)
* QSinH Intrinsic:: (Reserved for future use.)
* QSqRt Intrinsic:: (Reserved for future use.)
* QTan Intrinsic:: (Reserved for future use.)
* QTanD Intrinsic:: (Reserved for future use.)
* QTanH Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* Radix Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Rand Intrinsic:: Random number.
@end ifset
@ifset familyF90
* Random_Number Intrinsic:: (Reserved for future use.)
* Random_Seed Intrinsic:: (Reserved for future use.)
* Range Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* Real Intrinsic:: Convert value to type @code{REAL(KIND=1)}.
@end ifset
@ifset familyGNU
* RealPart Intrinsic:: Extract real part of complex.
@end ifset
@ifset familyF2U
* Rename Intrinsic (subroutine):: Rename file.
@end ifset
@ifset familyBADU77
* Rename Intrinsic (function):: Rename file.
@end ifset
@ifset familyF90
* Repeat Intrinsic:: (Reserved for future use.)
* Reshape Intrinsic:: (Reserved for future use.)
* RRSpacing Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2C
* RShift Intrinsic:: Right-shift bits.
@end ifset
@ifset familyF90
* Scale Intrinsic:: (Reserved for future use.)
* Scan Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyVXT
* Secnds Intrinsic:: Get local time offset since midnight.
@end ifset
@ifset familyF2U
* Second Intrinsic (function):: Get CPU time for process in seconds.
* Second Intrinsic (subroutine):: Get CPU time for process
in seconds.
@end ifset
@ifset familyF90
* Selected_Int_Kind Intrinsic:: (Reserved for future use.)
* Selected_Real_Kind Intrinsic:: (Reserved for future use.)
* Set_Exponent Intrinsic:: (Reserved for future use.)
* Shape Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* Short Intrinsic:: Convert to @code{INTEGER(KIND=6)} value
truncated to whole number.
@end ifset
@ifset familyF77
* Sign Intrinsic:: Apply sign to magnitude.
@end ifset
@ifset familyF2U
* Signal Intrinsic (subroutine):: Muck with signal handling.
@end ifset
@ifset familyBADU77
* Signal Intrinsic (function):: Muck with signal handling.
@end ifset
@ifset familyF77
* Sin Intrinsic:: Sine.
@end ifset
@ifset familyVXT
* SinD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* SinH Intrinsic:: Hyperbolic sine.
@end ifset
@ifset familyF2U
* Sleep Intrinsic:: Sleep for a specified time.
@end ifset
@ifset familyF77
* Sngl Intrinsic:: Convert (archaic).
@end ifset
@ifset familyVXT
* SnglQ Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF90
* Spacing Intrinsic:: (Reserved for future use.)
* Spread Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* SqRt Intrinsic:: Square root.
@end ifset
@ifset familyF2U
* SRand Intrinsic:: Random seed.
* Stat Intrinsic (subroutine):: Get file information.
* Stat Intrinsic (function):: Get file information.
@end ifset
@ifset familyF90
* Sum Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* SymLnk Intrinsic (subroutine):: Make symbolic link in file system.
@end ifset
@ifset familyBADU77
* SymLnk Intrinsic (function):: Make symbolic link in file system.
@end ifset
@ifset familyF2U
* System Intrinsic (subroutine):: Invoke shell (system) command.
@end ifset
@ifset familyBADU77
* System Intrinsic (function):: Invoke shell (system) command.
@end ifset
@ifset familyF90
* System_Clock Intrinsic:: Get current system clock value.
@end ifset
@ifset familyF77
* Tan Intrinsic:: Tangent.
@end ifset
@ifset familyVXT
* TanD Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF77
* TanH Intrinsic:: Hyperbolic tangent.
@end ifset
@ifset familyF2U
* Time Intrinsic (UNIX):: Get current time as time value.
@end ifset
@ifset familyVXT
* Time Intrinsic (VXT):: Get the time as a character value.
@end ifset
@ifset familyF2U
* Time8 Intrinsic:: Get current time as time value.
@end ifset
@ifset familyF90
* Tiny Intrinsic:: (Reserved for future use.)
* Transfer Intrinsic:: (Reserved for future use.)
* Transpose Intrinsic:: (Reserved for future use.)
* Trim Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* TtyNam Intrinsic (subroutine):: Get name of terminal device for unit.
* TtyNam Intrinsic (function):: Get name of terminal device for unit.
@end ifset
@ifset familyF90
* UBound Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2U
* UMask Intrinsic (subroutine):: Set file creation permissions mask.
@end ifset
@ifset familyBADU77
* UMask Intrinsic (function):: Set file creation permissions mask.
@end ifset
@ifset familyF2U
* Unlink Intrinsic (subroutine):: Unlink file.
@end ifset
@ifset familyBADU77
* Unlink Intrinsic (function):: Unlink file.
@end ifset
@ifset familyF90
* Unpack Intrinsic:: (Reserved for future use.)
* Verify Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2C
* XOr Intrinsic:: Boolean XOR.
* ZAbs Intrinsic:: Absolute value (archaic).
* ZCos Intrinsic:: Cosine (archaic).
* ZExp Intrinsic:: Exponential (archaic).
@end ifset
@ifset familyVXT
* ZExt Intrinsic:: (Reserved for future use.)
@end ifset
@ifset familyF2C
* ZLog Intrinsic:: Natural logarithm (archaic).
* ZSin Intrinsic:: Sine (archaic).
* ZSqRt Intrinsic:: Square root (archaic).
@end ifset
@end menu
@ifset familyF2U
@node Abort Intrinsic
@subsubsection Abort Intrinsic
@cindex Abort intrinsic
@cindex intrinsics, Abort
@noindent
@example
CALL Abort()
@end example
@noindent
Intrinsic groups: @code{unix}.
@noindent
Description:
Prints a message and potentially causes a core dump via @code{abort(3)}.
@end ifset
@ifset familyF77
@node Abs Intrinsic
@subsubsection Abs Intrinsic
@cindex Abs intrinsic
@cindex intrinsics, Abs
@noindent
@example
Abs(@var{A})
@end example
@noindent
Abs: @code{INTEGER} or @code{REAL} function.
The exact type depends on that of argument @var{A}---if @var{A} is
@code{COMPLEX}, this function's type is @code{REAL}
with the same @samp{KIND=} value as the type of @var{A}.
Otherwise, this function's type is the same as that of @var{A}.
@noindent
@var{A}: @code{INTEGER}, @code{REAL}, or @code{COMPLEX}; scalar; INTENT(IN).
@noindent
Intrinsic groups: (standard FORTRAN 77).
@noindent
Description:
Returns the absolute value of @var{A}.
If @var{A} is type @code{COMPLEX}, the absolute
value is computed as:
@example
SQRT(REALPART(@var{A})**2, IMAGPART(@var{A})**2)
@end example
@noindent
Otherwise, it is computed by negating the @var{A} if
it is negative, or returning @var{A}.
@xref{Sign Intrinsic}, for how to explicitly
compute the positive or negative form of the absolute
value of an expression.
@end ifset
@ifset familyF2U
@node Access Intrinsic
@subsubsection Access Intrinsic
@cindex Access intrinsic
@cindex intrinsics, Access
@noindent
@example
Access(@var{Name}, @var{Mode})
@end example
@noindent
Access: @code{INTEGER(KIND=1)} function.
@noindent
@var{Name}: @code{CHARACTER}; scalar; INTENT(IN).
@noindent
@var{Mode}: @code{CHARACTER}; scalar; INTENT(IN).
@noindent
Intrinsic groups: @code{unix}.
@noindent
Description:
Checks file @var{Name} for accessibility in the mode specified by @var{Mode} and
returns 0 if the file is accessible in that mode, otherwise an error
code if the file is inaccessible or @var{Mode} is invalid.
See @code{access(2)}.
A null character (@samp{CHAR(0)}) marks the end of
the name in @var{Name}---otherwise,
trailing blanks in @var{Name} are ignored.
@var{Mode} may be a concatenation of any of the following characters:
@table @samp
@item r
Read permission
@item w
Write permission
@item x
Execute permission
@item @kbd{SPC}
Existence
@end table
@end ifset
@ifset familyASC
@node AChar Intrinsic
@subsubsection AChar Intrinsic
@cindex AChar intrinsic
@cindex intrinsics, AChar
@noindent
@example
AChar(@var{I})
@end example
@noindent
AChar: @code{CHARACTER*1} function.
@noindent
@var{I}: @code{INTEGER}; scalar; INTENT(IN).
@noindent
Intrinsic groups: @code{f2c}, @code{f90}.
@noindent
Description:
Returns the ASCII character corresponding to the
code specified by @var{I}.
@xref{IAChar Intrinsic}, for the inverse of this function.
@xref{Char Intrinsic}, for the function corresponding
to the system's native character set.
@end ifset
@ifset familyF77
@node ACos Intrinsic
@subsubsection ACos Intrinsic
@cindex ACos intrinsic
@cindex intrinsics, ACos
@noindent
@example
ACos(@var{X})
@end example
@noindent
ACos: @code{REAL} function, the @samp{KIND=} value of the type being that of argument @var{X}.
@noindent
@var{X}: @code{REAL}; scalar; INTENT(IN).
@noindent
Intrinsic groups: (standard FORTRAN 77).
@noindent
Description:
Returns the arc-cosine (inverse cosine) of @var{X}
in radians.
@xref{Cos Intrinsic}, for the inverse of this function.
@end ifset
@ifset familyVXT
@node ACosD Intrinsic
@subsubsection ACosD Intrinsic
@cindex ACosD intrinsic
@cindex intrinsics, ACosD
This intrinsic is not yet implemented.
The name is, however, reserved as an intrinsic.
Use @samp{EXTERNAL ACosD} to use this name for an