Skip to content

Instantly share code, notes, and snippets.

@JakubMifek
Created January 10, 2018 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JakubMifek/b845aa9d55b3de6516f202cb3326b7c7 to your computer and use it in GitHub Desktop.
Save JakubMifek/b845aa9d55b3de6516f202cb3326b7c7 to your computer and use it in GitHub Desktop.
Function for computing error of two logical vectors
function error = GetOutputError( A, B )
%GETOUTPUTERROR Summary of this function goes here
% Detailed explanation goes here
error = sum(abs(A - B));
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment