Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Create a function helps to find the path

조회 수: 1 (최근 30일)
Sushree Patra
Sushree Patra 2019년 1월 28일
마감: MATLAB Answer Bot 2021년 8월 20일
I want a create a recursive function for that I wrote one algorithm to calculate the path like
  1. function( int i , int j)
  2. if (i is rechable to out)
  3. root(i) = out;
  4. return i;
  5. else
  6. x = ((distance(i,j)<30)&&(max(distance(i,j)))&&(min(dist1(j)));
  7. root(i)= x(j);
  8. function(x,i+1);
  9. end
here i =13 nodes, j=50 nodes,out= destination
have to find out the least path
please somebody help me to solve it.
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2019년 1월 28일
Sushree - what have you tried so far? How do you determine if i is reachable to out? SeeMATLAB function for details on how to define a function.

답변 (0개)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by