Finding the shortest path in a cell array based on given input

If I have a call array of n - 1x2 vectors, how do I find the shortest path using a combination of these n vectors based on a given input
example using 6 vectors:
existing cell array - { [0 1], [1 2], [2 3], [3 4], [0 3], [1 4] }
input - [0 4]
expected output - {[0 1], [1 4]} or {[0 3],[3 4]}
edit: fixed input

댓글 수: 2

What do you mean "shortest path"?
Are the pairs of valure (x,y) coordinates such that you have 6 dots and you're trying to find which dot is closest to the input coordinate?
I don't understand how the outputs map onto the input.
Sorry, I should have done a better job explaining and I corrected a mistake in the question
The existing cell array is a sort of index, they are not coordinates. They are the indeces for transformation matrices (in robotics). The lower number is the start of the frame and the upper number is the end of the frame.
In the example, the existing cell array is all available frames I have. If I input a frame that doesn't exist, I can calculate it using the combination (product) of the other frames. the upper number of the previous frame should be the lower number of the next frame.
so i the case of the example, if the input is [0 4], i can achieve it by multiplying frames [0 1] x [1 4] or [0 3] x [3 4]

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

 채택된 답변

Stephen23
Stephen23 2019년 11월 22일
편집: Stephen23 2019년 11월 23일
Each row of the output cell array is one path:
>> C = {[0,1],[1,2],[2,3],[3,4],[0,3],[1,4]};
>> V = [0,4];
>> Z = mainfun(C,V)
>> Z{1,:} % 1st path
ans =
0 1
ans =
1 4
>> Z{2,:} % 2nd path
ans =
0 3
ans =
3 4
Where mainfun is defined as:
function Z = mainfun(C,V)
%C = {[0,1],[1,2],[2,3],[3,4],[0,3],[1,4]};
%V = [0,4];
N = 1+numel(C);
Z = {};
M = vertcat(C{:});
X = V(1)==M(:,1);
for ii = reshape(find(X),1,[])
nestfun(M(~X,:),C(ii))
end
%
function nestfun(W,A)
if numel(A)>N
return
elseif V(2)==A{end}(2)
if numel(A)<N
N = numel(A);
Z = A;
else
Z(end+1,:) = A;
end
else
Y = W(:,1)==A{end}(2);
for jj = reshape(find(Y),1,[])
nestfun(W(~Y,:),[A,{W(jj,:)}])
end
end
end
end

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Sparse Matrices에 대해 자세히 알아보기

질문:

2019년 11월 22일

편집:

2019년 11월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by