Files
MonteCarlo-Matlab/Point.m
2024-05-13 12:09:59 +02:00

12 lines
196 B
Matlab

classdef Point
properties
x double
y double
end
methods
function obj = Point(xIn, yIn)
obj.x = xIn;
obj.y = yIn;
end
end
end