G11SBF (PDF version)
G11 Chapter Contents
G11 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G11SBF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G11SBF is a service routine which may be used prior to calling G11SAF to calculate the frequency distribution of a set of dichotomous score patterns.

2  Specification

SUBROUTINE G11SBF ( IP, N, NS, X, LDX, IRL, IFAIL)
INTEGER  IP, N, NS, LDX, IRL(N), IFAIL
LOGICAL  X(LDX,IP)

3  Description

When each of n individuals responds to each of p dichotomous variables the data assumes the form of the matrix X defined below
X= x11 x12 x1p x21 x22 x2p xn1 xn2 xnp = x̲1 x̲2 x̲n ,
where the x take the value of 0 or 1 and x̲l=xl1,xl2,,xlp, for l=1,2,,n, denotes the score pattern of the lth individual. G11SBF calculates the number of different score patterns, s, and the frequency with which each occurs. This information can then be passed to G11SAF.

4  References

None.

5  Parameters

1:     IP – INTEGERInput
On entry: p, the number of dichotomous variables.
Constraint: IP3.
2:     N – INTEGERInput
On entry: n, the number of individuals in the sample.
Constraint: N7.
3:     NS – INTEGEROutput
On exit: the number of different score patterns, s.
4:     X(LDX,IP) – LOGICAL arrayInput/Output
On entry: Xij must be set equal to .TRUE. if xij=1, and .FALSE. if xij=0, for i=1,2,,n and j=1,2,,p.
On exit: the first s rows of X contain the s different score patterns.
5:     LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which G11SBF is called.
Constraint: LDXN.
6:     IRL(N) – INTEGER arrayOutput
On exit: the frequency with which the lth row of X occurs, for l=1,2,,s.
7:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,IP<3,
orN<7,
orLDX<N.

7  Accuracy

Exact.

8  Further Comments

The time taken by G11SBF is small and increases with n.

9  Example

This example counts the frequencies of different score patterns in the following list:
Score Patterns
000
010
111
000
001
000
000
110
001
011

9.1  Program Text

Program Text (g11sbfe.f90)

9.2  Program Data

Program Data (g11sbfe.d)

9.3  Program Results

Program Results (g11sbfe.r)


G11SBF (PDF version)
G11 Chapter Contents
G11 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012