Name length cc4m_logo_inline

IDNAMING-20
TitleVariable names shall be at most 63 characters long. Function names shall be at least 3 and at most 63 characters long.
PriorityRecommended
Severity level8
DescriptionVariable names shall be at most 63 characters long. Function names shall be at least 3 and at most 63 characters long.
RationaleNames shall be descriptive, so should not be too short. However, variable names can sometimes be single characters (x, y) and still be descriptive. MATLAB can not handle names of more than 63 characters long.

Avoid:

maximumValueOfTheEntireSetOfDataPoints = max(data);

Instead use:

maxData = max(data);