Average of two closed curves

조회 수: 7 (최근 30일)
Jullienne Franz
Jullienne Franz 2019년 3월 16일
댓글: Jullienne Franz 2019년 3월 16일
Dear everyone,
Is there a way in Matlab to average two closed curves? say I want to take the average of a unit square and a unit circle? How do I do this in Matlab?
  댓글 수: 2
KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 3월 16일
It would be better to undestand the problem, if you show the same in mathematical expression?
KSSV
KSSV 2019년 3월 16일
Read about mean

댓글을 달려면 로그인하십시오.

답변 (2개)

Stephan
Stephan 2019년 3월 16일
편집: Stephan 2019년 3월 16일
Hi,
try:
% Calculate Parts to 90°
angle1 = linspace(0,pi/4,180)';
% Radius of circle = length of square = 1
r = 1;
% Calculate the mean
r_mean = ((sqrt(r.*tan(angle1).^2 +r.^2))+r)./2;
% Calculate the coordinates
x = [r_mean.*cos(angle1); r_mean.*cos(angle1)];
y = [r_mean.*sin(angle1); -r_mean.*sin(angle1)];
% Build the vectors to plot
xvals = [x; -x; y; y];
yvals = [y; y; -x; x];
% plot
scatter(xvals,yvals)
a further possibility is working with polyshape objects:
% construct the polyshape object
poly = polyshape(xvals, yvals);
pgon = simplify(convhull(poly));
% construct the square
rect = polyshape([-1 1 1 -1], [-1 -1 1 1]);
% construct the circle
t = 0:0.05:2*pi;
x1 = cos(t);
y1 = sin(t);
circ = polyshape(x1,y1);
% plot them all
hold on
plot(rect)
plot(pgon)
plot(circ)
hold off
xlim([-1.1 1.1])
ylim([-1.1 1.1])
which gives:
polyshapes.PNG
Best regards
Stephan
  댓글 수: 4
John D'Errico
John D'Errico 2019년 3월 16일
+1. Yes. I was going to show how to use polyshape in this, but I see that Stephan has done a good job of it.
Jullienne Franz
Jullienne Franz 2019년 3월 16일
Thank you Stephan for your suggestions. I will try to incorporate your ideas in my code and hope to resolve my problem.

댓글을 달려면 로그인하십시오.


John D'Errico
John D'Errico 2019년 3월 16일
편집: John D'Errico 2019년 3월 16일
Given two closed curves, say a circle and a square, I would first formulate the problem as a pair of functions in polar coordinates. Thus, represent these two closed curves in polar form, where we will have r as a function of theta. Once you have those relationships, the problem is absolutely trivial.
So, for a unit curcle, we have
r1 = @(theta) ones(size(theta);
For a comparable square centered at the origin, thus of side length 2, I might get trickier...
r2 = @(theta) min(1./abs(cos(theta)), 1./abs(sin(theta)));
r3 = @(theta) (r1(theta) + r2(theta))/2;
Now, all is, as I said, trivial.
theta = linspace(0,2*pi,1000);
plot(cos(theta).*r1(theta),sin(theta).*r1(theta),'b-')
hold on
plot(cos(theta).*r2(theta),sin(theta).*r2(theta),'g-')
plot(cos(theta).*r3(theta),sin(theta).*r3(theta),'r-')
axis equal
grid on
As I said, trivial.
The problem becomes considerably less trivial if you have some fully general closed curve. For example...
pxy = randn(10,2);
pxy(end+1,:) = pxy(1,:);
plot(pxy(:,1),pxy(:,2),'o-')
You cannot dispute this is a closed curve. Yet interpolation along the curve is now a bit more problematic. Thus conversion to polar coordinates is now a bit less useful. Even a simple figure 8 curve is now less automatic. So the complexity of that closed curve is important. Can it be simply represented as a single valued parametric function in polar form? If so, then all is trivial again. If not, then you need to decide how you wish to interpolate, and what is the meaning of that mean in your complex case.
Otherwise, you are doing something possibly no more meaningful than taking the average of apples and oranges, the result may be just grape juice.
  댓글 수: 3
John D'Errico
John D'Errico 2019년 3월 16일
Yup. That would be entirely adequate, as good as anything else. As long as they contain some point that can serve as an origin, then rotating that ray around the center is no different from what I did.
Jullienne Franz
Jullienne Franz 2019년 3월 16일
Thank you John for your suggestions. I will try to work on these ideas and hope to resolve my problem.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Elementary Polygons에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by