You can now just type the name of a variable in MATLAB and press return, and it will display

release/4.3a0
Frank Dellaert 2009-12-12 04:10:59 +00:00
parent d7bbe0a355
commit 58ed9ec367
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void Class::matlab_proxy(const string& classFile) {
c.matlab_proxy_fragment(ofs,name);
ofs << " if nargin ~= 13 && obj.self == 0, error('" << name << " constructor failed'); end" << endl;
ofs << " end" << endl;
ofs << " function display(obj), obj.print; end" << endl;
ofs << " function display(obj), obj.print(''); end" << endl;
ofs << " function disp(obj), obj.display; end" << endl;
ofs << " end" << endl;
ofs << "end" << endl;