Info

This question is closed. Reopen it to edit or answer.

Create a function helps to find the path

1 view (last 30 days)
Sushree Patra
Sushree Patra on 28 Jan 2019
Closed: MATLAB Answer Bot on 20 Aug 2021
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 Comment
Geoff Hayes
Geoff Hayes on 28 Jan 2019
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.

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!