User`s guide

Model Coverage for MATLAB Functions
18-29
Coverage for Line 14
The Decisions Analyzed table indicates that the local function rect_intersect
executed during testing, thus receiving 100% coverage.
Coverage for Line 27
The Decisions analyzed table indicates that there are two possible outcomes for the
decision in line 27: true and false. Five of the eight times it was executed, the decision
evaluated to false. The remaining three times, it evaluated to true. Because both
possible outcomes occurred, decision coverage is 100%.
The Conditions analyzed table sheds some additional light on the decision in line 27.
Because this decision consists of two conditions linked by a logical OR (||) operation,
only one condition must evaluate true for the decision to be true. If the first condition
evaluates to true, there is no need to evaluate the second condition. The first condition,
top1 < bottom2, was evaluated eight times, and was true twice. This means that
the second condition was evaluated only six times. In only one case was it true, which