Assert inputs cc4m_logo_inline

IDSTAT-10
TitleEvery assert call shall have an error ID and a message as the 2nd and 3rd inputs.
PriorityMandatory
Severity level5
DescriptionEvery call to the built-in assert function shall have an error identifier and a message as second and third inputs.
RationaleIncluding an identifier allows for better testing and exception handling. Including a proper error message directly clarifies the problem.

Avoid:

assert(~isempty(list))

Instead use:

assert(~isempty(list), 'ClassName:MethodName:ListIsEmpty', 'The list shall not be empty.')