ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
pm_str::getMaxLoc Interface Reference

Generate and return the location of the first occurrence of the maximum of the input string(s).
More...

Detailed Description

Generate and return the location of the first occurrence of the maximum of the input string(s).

Parameters
[in]str: The input scalar or array of arbitrary rank of type character of kind any supported by the processor (e.g., SK, SKA, SKD , or SKU) of arbitrary len type parameter.
[in]mask: The input vector of type logical of default kind LK of the same length as the len type parameter of the input str.
If present, then only those characters of str corresponding to a .true. in mask will be considered to find maxLoc.
When mask is present, str must be a scalar (the procedures are non-elemental when mask is present).
(optional, default = [(.true., i = 1, len(str))])
[in]back: The input scalar of type logical of default kind LK.
If present and .true., then the location of the last element of maximum value in str will be output.
(optional, default = .false.)
Returns
maxLoc : The output scalar or array of the same shape as the input str of type integer of default kind IK containing the location of the first character of maximum value in the input str.
If len(str) == 0 on input, then maxLoc = 1_IK on output, similar to the behavior of the Fortran intrinsic functions minloc and maxloc in the Intel Fortran compiler.


Possible calling interfaces

use pm_str, only: getMaxLoc
maxLoc = getMaxLoc(str, back = back)
maxLoc = getMaxLoc(str, mask, back = back)
Generate and return the location of the first occurrence of the maximum of the input string(s).
Definition: pm_str.F90:691
This module contains classes and procedures for various string manipulations and inquiries.
Definition: pm_str.F90:49
Warning
The input str must have non-zero len type-parameter.
The length of the input mask vector must equal the length of the input str.
These conditions are verified only if the library is built with the preprocessor macro CHECK_ENABLED=1.
The pure procedure(s) documented herein become impure when the ParaMonte library is compiled with preprocessor macro CHECK_ENABLED=1.
By default, these procedures are pure in release build and impure in debug and testing builds.
Remarks
Individual characters are compared using the Fortran intrinsic relational operators for objects of type character.
Note
The procedures under this generic interface are intended to (partially) overload the functionality of the Fortran intrinsic function maxloc to also accept input scalar string arguments.
See also
getMinLoc
getMaxLoc
getMinVal
getMaxVal


Example usage

1program example
2
3 use pm_kind, only: LK
4 use pm_kind, only: SK ! all processor types and kinds are supported.
5 use pm_io, only: display_type
6 use pm_arrayFind, only: getLoc
7 use pm_str, only: getMaxLoc
8
9 implicit none
10
11 logical(LK) , allocatable :: Mask(:)
12 character(:, SK), allocatable :: str
13 integer :: i
14
15 type(display_type) :: disp
16 disp = display_type(file = "main.out.F90")
17
18 call disp%skip()
19 call disp%show("getMaxLoc(SK_'ParaMonte')")
20 call disp%show( getMaxLoc(SK_'ParaMonte') )
21 call disp%skip()
22
23 call disp%skip()
24 call disp%show("getMaxLoc(SK_'The ParaMonte Parallel Library')")
25 call disp%show( getMaxLoc(SK_'The ParaMonte Parallel Library') )
26 call disp%skip()
27
28 call disp%skip()
29 call disp%show("getMaxLoc(SK_'The ParaMonte Parallel Library', back = .true._LK)")
30 call disp%show( getMaxLoc(SK_'The ParaMonte Parallel Library', back = .true._LK) )
31 call disp%skip()
32
33 call disp%skip()
34 call disp%show("getMaxLoc(SK_'The ParaMonte Parallel Library', back = .false._LK)")
35 call disp%show( getMaxLoc(SK_'The ParaMonte Parallel Library', back = .false._LK) )
36 call disp%skip()
37
38 call disp%skip()
39 call disp%show("str = SK_'The ParaMonte Parallel Library'")
40 str = SK_'The ParaMonte Parallel Library'
41 call disp%show("Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`")
42 Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`
43 call disp%show("Mask")
44 call disp%show( Mask )
45 call disp%show("getMaxLoc(str, Mask)")
46 call disp%show( getMaxLoc(str, Mask) )
47 call disp%skip()
48
49 call disp%skip()
50 call disp%show("str = SK_'The ParaMonte Parallel Library'")
51 str = SK_'The ParaMonte Parallel Library'
52 call disp%show("Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`")
53 Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`
54 call disp%show("Mask")
55 call disp%show( Mask )
56 call disp%show("getMaxLoc(str, Mask, back = .true._LK)")
57 call disp%show( getMaxLoc(str, Mask, back = .true._LK) )
58 call disp%skip()
59
60 call disp%skip()
61 call disp%show("str = SK_'The ParaMonte Parallel Library'")
62 str = SK_'The ParaMonte Parallel Library'
63 call disp%show("Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`")
64 Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`
65 call disp%show("Mask")
66 call disp%show( Mask )
67 call disp%show("getMaxLoc(str, Mask, back = .false._LK)")
68 call disp%show( getMaxLoc(str, Mask, back = .false._LK) )
69 call disp%skip()
70
71 call disp%skip()
72 call disp%show("getMaxLoc([character(11,SK) :: 'The Fortran', 'Programming', 'Language']) ! Note that 'Language' is padded with blanks.")
73 call disp%show( getMaxLoc([character(11,SK) :: 'The Fortran', 'Programming', 'Language']) )
74 call disp%skip()
75
76 call disp%skip()
77 call disp%show("getMaxLoc([character(11,SK) :: 'The Fortran', 'Programming', 'Language'], back = .true._LK) ! Note that 'Language' is padded with blanks.")
78 call disp%show( getMaxLoc([character(11,SK) :: 'The Fortran', 'Programming', 'Language'], back = .true._LK) )
79 call disp%skip()
80
81end program example
Generate and return an allocatable array containing the indices of the locations within the input arr...
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11726
This is a generic method of the derived type display_type with pass attribute.
Definition: pm_io.F90:11508
This module contains procedures and generic interfaces for finding locations of a pattern in arrays o...
This module contains classes and procedures for input/output (IO) or generic display operations on st...
Definition: pm_io.F90:252
type(display_type) disp
This is a scalar module variable an object of type display_type for general display.
Definition: pm_io.F90:11393
This module defines the relevant Fortran kind type-parameters frequently used in the ParaMonte librar...
Definition: pm_kind.F90:268
integer, parameter LK
The default logical kind in the ParaMonte library: kind(.true.) in Fortran, kind(....
Definition: pm_kind.F90:541
integer, parameter SK
The default character kind in the ParaMonte library: kind("a") in Fortran, c_char in C-Fortran Intero...
Definition: pm_kind.F90:539
Generate and return an object of type display_type.
Definition: pm_io.F90:10282

Example Unix compile command via Intel ifort compiler
1#!/usr/bin/env sh
2rm main.exe
3ifort -fpp -standard-semantics -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example Windows Batch compile command via Intel ifort compiler
1del main.exe
2set PATH=..\..\..\lib;%PATH%
3ifort /fpp /standard-semantics /O3 /I:..\..\..\include main.F90 ..\..\..\lib\libparamonte*.lib /exe:main.exe
4main.exe

Example Unix / MinGW compile command via GNU gfortran compiler
1#!/usr/bin/env sh
2rm main.exe
3gfortran -cpp -ffree-line-length-none -O3 -Wl,-rpath,../../../lib -I../../../inc main.F90 ../../../lib/libparamonte* -o main.exe
4./main.exe

Example output
1
2getMaxLoc(SK_'ParaMonte')
3+8
4
5
6getMaxLoc(SK_'The ParaMonte Parallel Library')
7+30
8
9
10getMaxLoc(SK_'The ParaMonte Parallel Library', back = .true._LK)
11+1
12
13
14getMaxLoc(SK_'The ParaMonte Parallel Library', back = .false._LK)
15+30
16
17
18str = SK_'The ParaMonte Parallel Library'
19Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`
20Mask
21T, T, T, F, T, T, T, T, T, T, T, T, T, F, T, T, T, T, T, T, T, T, F, T, T, T, T, T, T, T
22getMaxLoc(str, Mask)
23+30
24
25
26str = SK_'The ParaMonte Parallel Library'
27Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`
28Mask
29T, T, T, F, T, T, T, T, T, T, T, T, T, F, T, T, T, T, T, T, T, T, F, T, T, T, T, T, T, T
30getMaxLoc(str, Mask, back = .true._LK)
31+1
32
33
34str = SK_'The ParaMonte Parallel Library'
35Mask = [logical(LK) :: (.true., i = 1, len(str))]; Mask(getLoc(str, SK_' ')) = .false._LK ! set all whitespace locations in the Mask to `.false.`
36Mask
37T, T, T, F, T, T, T, T, T, T, T, T, T, F, T, T, T, T, T, T, T, T, F, T, T, T, T, T, T, T
38getMaxLoc(str, Mask, back = .false._LK)
39+30
40
41
42getMaxLoc([character(11,SK) :: 'The Fortran', 'Programming', 'Language']) ! Note that 'Language' is padded with blanks.
43+8, +2, +5
44
45
46getMaxLoc([character(11,SK) :: 'The Fortran', 'Programming', 'Language'], back = .true._LK) ! Note that 'Language' is padded with blanks.
47+8, +5, +5
48
49
Test:
test_pm_str


Final Remarks


If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.

  1. If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
  2. If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.

This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.

Author:
Amir Shahmoradi, September 1, 2017, 12:00 AM, Institute for Computational Engineering and Sciences (ICES), The University of Texas at Austin

Definition at line 691 of file pm_str.F90.


The documentation for this interface was generated from the following file: