Quantcast
Typesetting math: 100%

Halstead Complexity - Difficulty

Last modified by
on
Sep 29, 2022, 12:50:40 AM
Created by
on
Dec 1, 2013, 7:43:57 AM
D=η12+N2η2
(N2)Total Operands
(η1)Unique Operators
(η2)Unique Operands

The Halstead Complexity Difficulty calculator computes the difficulty to write or understand the program. 

INSTRUCTIONS: Enter the following:

  • (N2) Total number of operands
  • 1) Number of unique operators
  • 2) Number of unique operands

Halstead Complexity Difficulty(D): The calculator returns estimated difficulty in a software project.

The Math / Science

The formula for Halstead Complexity Difficulty is:

D = η1 / 2 + N2/ η2

where:

  • D = Halstead  Complexity Difficulty measure
  • N2 = Total number of Operands
  • η1 = Number of unique Operators
  • η2 = Number of Unique Operands

Definitions

  • Operators are functions such as addition (+), subtraction (-), division (÷), multiplication (x).
  • Operands are the values used in conjunction with operators.

In the example, (7x3)-13, the operators are the multiplication (x) and subtraction (-), of which there are two, and the operands are 7, 3, and 13, of which there are three.  Let's do a code example.

m = sqrt(x^2 + y^2 + z^2)

x = x/m

y = y/m

z = z/m

In the code above, the Total Number of Operands is 9: x, y, z, x and m, y and m, y and z.  The Unique Number of Operand are four (4), x, y, z and m.  The number of unique operators are four: sqrt(√), square (^2), addition (+) and division (/).  Using the Halstead Complexity Difficulty Measure:

      D = 4/2 + 9/4 = 4.25

Halstead Complexity Calculators


This equation, Halstead Complexity - Difficulty, is used in 1 page
  • Comments
  • Attachments
  • Stats
No comments
This site uses cookies to give you the best, most relevant experience. By continuing to browse the site you are agreeing to our use of cookies.