Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Create a function helps to find the path
1 回表示 (過去 30 日間)
古いコメントを表示
I want a create a recursive function for that I wrote one algorithm to calculate the path like
- function( int i , int j)
- if (i is rechable to out)
- root(i) = out;
- return i;
- else
- x = ((distance(i,j)<30)&&(max(distance(i,j)))&&(min(dist1(j)));
- root(i)= x(j);
- function(x,i+1);
- 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
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!