Tags | |
UUID | e6d0c1ec-da27-11e2-8e97-bc764e04d25f |
The Halstead Complexity Difficulty calculator computes the difficulty to write or understand the program.
INSTRUCTIONS: Enter the following:
Halstead Complexity Difficulty(D): The calculator returns estimated difficulty in a software project.
The formula for Halstead Complexity Difficulty is:
D = η1 / 2 + N2/ η2
where:
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
No comments |