MATLAB: Write a function that returns logical true if a vector, matrix, or scalar is empty.
% P2: Check for an empty matrix
Write a function myIsEmpty which takes one input (scalar, vector, matrix,...)
% and returns logical true if the input is empty and false otherwise. % DO NOT USE MATLAB's isempty FUNCTION!
% Example: An input of [] should result in the output true.
% An input of 1 should result in the output false.
% An input of [1, 2] should result in the output false.
% An input of [2 3; 4 5] should result in the output false.
BEGIN_PRECOND
END_PRECOND
BEGIN SOLUTION
% Your solution goes here
END_SOLUTION