5 lines
119 B
Matlab
5 lines
119 B
Matlab
|
|
function result = memberFunction(obj)
|
||
|
|
% usage: obj.memberFunction()
|
||
|
|
error('need to compile memberFunction.cpp');
|
||
|
|
end
|