Montecarlo Matlab

This commit is contained in:
Parric007
2024-05-13 12:09:59 +02:00
commit 4a0994aceb
4 changed files with 111 additions and 0 deletions

12
Point.m Normal file
View File

@@ -0,0 +1,12 @@
classdef Point
properties
x double
y double
end
methods
function obj = Point(xIn, yIn)
obj.x = xIn;
obj.y = yIn;
end
end
end