<div dir="ltr">Hello. I tried to compute Normalized Mutual information for a number of different transformations<div>and I get an exception. Them I tried to do some debugging and Microsoft Visual Studio directed me to unhandld.cpp and specifically at line 40. </div><div><br></div><div><div>/***</div><div>*unhandld.cxx - Wrapper to call terminate() when an exception goes unhandled.</div><div>*</div><div>*       Copyright (c) Microsoft Corporation. All rights reserved.</div><div>*</div><div>*Purpose:</div><div>*       Wrapper to call terminate() when an exception goes unhandled.</div><div>****/</div><div><br></div><div>#include <windows.h></div><div>#include <ehdata.h></div><div>#include <eh.h></div><div>#include <ehhooks.h></div><div>#include <ehassert.h></div><div>#include <awint.h></div><div>#include <internal.h></div><div>#include <stdlib.h></div><div><br></div><div>#pragma hdrstop</div><div><br></div><div>#include <sect_attribs.h></div><div><br></div><div>extern "C" int  __cdecl __CxxSetUnhandledExceptionFilter(void);</div><div><br></div><div>/////////////////////////////////////////////////////////////////////////////</div><div>//</div><div>// __CxxUnhandledExceptionFilter - if the exception is ours, call terminate();</div><div>//</div><div>// Returns:</div><div>//      If the exception was MSVC C++ EH, does not return.</div><div>//      If the previous filter was NULL, returns EXCEPTION_CONTINUE_SEARCH.</div><div>//      Otherwise returns value returned by previous filter.</div><div>//</div><div>LONG WINAPI __CxxUnhandledExceptionFilter(</div><div>        LPEXCEPTION_POINTERS pPtrs</div><div>        )</div><div>{</div><div>        if (PER_IS_MSVC_PURE_OR_NATIVE_EH((EHExceptionRecord*)(pPtrs->ExceptionRecord))) {</div><div>                terminate();            // Does not return</div><div>                return EXCEPTION_EXECUTE_HANDLER;</div><div>        }</div><div>        return EXCEPTION_CONTINUE_SEARCH;</div><div>}</div></div><div><br></div><div><br></div><div>The break point is at return EXCEPTION_EXECUTE_HANDLER;</div><div><br></div><div>What could envoke this exception?</div><div><br></div><div>Thank you in advance</div><div><br></div></div>