jkhsjdhjs

x undefined in line 2

Nov 28th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.15 KB | None | 0 0
  1. function result = isNumericScalar(x)
  2.     if ~isscalar(x) | ~isnumeric(x)
  3.         result = false;
  4.         return;
  5.     end
  6.     result = true;
  7. end
Advertisement
Add Comment
Please, Sign In to add comment