How to define an object witch has parameters and functions?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How to define an object witch has parameters and functions?
1 comentario
per isakson
el 31 de Oct. de 2018
Here is the definition of BasicClass:
classdef BasicClass
properties
Value
end
methods
function r = roundOff(obj)
r = round([obj.Value],2);
end
function r = multiplyBy(obj,n)
r = [obj.Value] * n;
end
end
end
Respuestas (0)
Ver también
Categorías
Más información sobre Software Development Tools en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!