-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo3D_4.m
111 lines (86 loc) · 5.87 KB
/
demo3D_4.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
%% This test demonstrates intersections of 4 spheroids
% Coordinate of the shared focal point
sharedFocalPoint = [-10; -20; 30];
% Coordinates of the other focal points of 2 spheroids.
numSpheroids = 4;
otherFocalPoints = zeros(3, numSpheroids);
%% (Case 1: The major axes are on the same yz-plane where x is constant)
otherFocalPoints(:,1) = [0; 20; 1] + sharedFocalPoint;
otherFocalPoints(:,2) = [0; 10; -2] + sharedFocalPoint;
otherFocalPoints(:,3) = [0; -16; 3] + sharedFocalPoint;
otherFocalPoints(:,4) = [0; -14; -4] + sharedFocalPoint;
% Select point p at which the spheroids intersect and determine the diameters accordingly.
% There will be 2 points of intersection, one of which will be p.
p = [4; 3; 11] + sharedFocalPoint;
diameters = threePointDistance(otherFocalPoints, p, sharedFocalPoint)';
% Solve intersections and an estimate on the model error.
% The bigger the error, the further away the estimated intersections are from the real ones.
% The model error is not exacly the actual distance between
% the estimate and the correct intersection so it should be taken with a pinch of salt.
[intersections, relativeModelError] = solveEllipseIntersections(sharedFocalPoint, otherFocalPoints, diameters);
assert(min(vecnorm(intersections - p)) < 1e-6, "Intersection point is not correct")
assert(max(relativeModelError) < 1e-6, "Model error in the solver is too large")
% Calculate spheroid coordinates and plot the coordinates and the intersection points.
plotSpheroids(sharedFocalPoint, otherFocalPoints, diameters, intersections, "4 spheroids, Case 1");
disp("Case 1: intersection coordinates as columns: ");
disp(intersections);
%% (Case 2: The major axes are on the same tilted plane (x and y coordinates are linearly dependent))
otherFocalPoints(:,1) = [10; 20; 1] + sharedFocalPoint;
otherFocalPoints(:,2) = [5; 10; -2] + sharedFocalPoint;
otherFocalPoints(:,3) = [-8; -16; 3] + sharedFocalPoint;
otherFocalPoints(:,4) = [-7; -14; -4] + sharedFocalPoint;
% Select point p at which the spheroids intersect and determine the diameters accordingly.
% There will be 2 points of intersection, one of which will be p.
p = [4; 3; 11] + sharedFocalPoint;
diameters = threePointDistance(otherFocalPoints, p, sharedFocalPoint)';
% Solve intersections and an estimate on the model error.
% The bigger the error, the further away the estimated intersections are from the real ones.
% The model error is not exacly the actual distance between
% the estimate and the correct intersection so it should be taken with a pinch of salt.
[intersections, relativeModelError] = solveEllipseIntersections(sharedFocalPoint, otherFocalPoints, diameters);
assert(min(vecnorm(intersections - p)) < 1e-6, "Intersection point is not correct")
assert(max(relativeModelError) < 1e-6, "Model error in the solver is too large")
% Calculate spheroid coordinates and plot the coordinates and the intersection points.
plotSpheroids(sharedFocalPoint, otherFocalPoints, diameters, intersections, "4 spheroids, Case 2");
disp("Case 2: intersection coordinates as columns:");
disp(intersections);
%% (Case 3: z coordinates of the major axes are linearly dependent on x- and y-coordinates.)
otherFocalPoints(:,1) =[10; 1; 10+1] + sharedFocalPoint;
otherFocalPoints(:,2) = [5; -2; 5-2] + sharedFocalPoint;
otherFocalPoints(:,3) = [-8; 3; -8+3] + sharedFocalPoint;
otherFocalPoints(:,4) = [-7; -4; -7-4] + sharedFocalPoint;
% Select point p at which the spheroids intersect and determine the diameters accordingly.
% There will be 2 points of intersection, one of which will be p.
p = [4; 3; 11] + sharedFocalPoint;
diameters = threePointDistance(otherFocalPoints, p, sharedFocalPoint)';
% Solve intersections and an estimate on the model error.
% The bigger the error, the further away the estimated intersections are from the real ones.
% The model error is not exacly the actual distance between
% the estimate and the correct intersection so it should be taken with a pinch of salt.
[intersections, relativeModelError] = solveEllipseIntersections(sharedFocalPoint, otherFocalPoints, diameters);
assert(min(vecnorm(intersections - p)) < 1e-6, "Intersection point is not correct")
assert(max(relativeModelError) < 1e-6, "Model error in the solver is too large")
% Calculate spheroid coordinates and plot the coordinates and the intersection points.
plotSpheroids(sharedFocalPoint, otherFocalPoints, diameters, intersections, "4 spheroids, Case 3");
disp("Case 3: intersection coordinates as columns:");
disp(intersections);
%% (Case 4: General case with 3 spheroids)
otherFocalPoints(:,1) = [-2; -5; 1] + sharedFocalPoint;
otherFocalPoints(:,2) = [0; 10; 2] + sharedFocalPoint;
otherFocalPoints(:,3) = [10; 0; 3] + sharedFocalPoint;
otherFocalPoints(:,4) = [-8; -3; 4] + sharedFocalPoint;
% Select point p at which the spheroids intersect and determine the diameters accordingly.
% There will be 2 points of intersection, one of which will be p.
p = [4; 3; 11] + sharedFocalPoint;
diameters = threePointDistance(otherFocalPoints, p, sharedFocalPoint)';
% Solve intersections and an estimate on the model error.
% The bigger the error, the further away the estimated intersections are from the real ones.
% The model error is not exacly the actual distance between
% the estimate and the correct intersection so it should be taken with a pinch of salt.
[intersections, relativeModelError] = solveEllipseIntersections(sharedFocalPoint, otherFocalPoints, diameters);
assert(min(vecnorm(intersections - p)) < 1e-6, "Intersection point is not correct")
assert(max(relativeModelError) < 1e-6, "Model error in the solver is too large")
% Calculate spheroid coordinates and plot the coordinates and the intersection points.
plotSpheroids(sharedFocalPoint, otherFocalPoints, diameters, intersections, "4 spheroids, Case 4");
disp("Case 4: intersection coordinates as columns:");
disp(intersections);