Renamed file so it matches the naming scheme of the other matlab examples.

--HG--
rename : dlib/matlab/mex_example_class.cpp => dlib/matlab/example_mex_class.cpp
This commit is contained in:
Davis King 2016-10-09 16:36:48 -04:00
parent 72a6ad8db1
commit 1eeb67dbe5
2 changed files with 2 additions and 2 deletions

View File

@ -13,5 +13,5 @@ include(../cmake)
add_mex_function(example_mex_function dlib)
add_mex_function(example_mex_callback dlib)
add_mex_function(example_mex_struct dlib)
add_mex_function(mex_example_class dlib)
add_mex_function(example_mex_class dlib)

View File

@ -1,6 +1,6 @@
// The contents of this file are in the public domain. See LICENSE_FOR_EXAMPLE_PROGRAMS.txt
/*
This mex file will create a MATLAB function called mex_example_class. If you call it
This mex file will create a MATLAB function called example_mex_class. If you call it
with no arguments it will output the MATLAB .m code to create a MATLAB wrapper class.
Paste that code into a .m file. Then you will be able to work with this C++ class
directly in MATLAB.