4 lines
140 B
Matlab
4 lines
140 B
Matlab
%Set function
|
|
function GenericClassInstance = setValue(GenericClassInstance,newValue)
|
|
GenericClassInstance.classVariable = newValue;
|
|
end
|