Info

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

to change without using function in MATLAB

조회 수: 1 (최근 30일)
chan
chan 2015년 12월 4일
마감: MATLAB Answer Bot 2021년 8월 20일
here is a program code in C using function and recursion.i dnt know how to convert this code into normal code without using function and recursion in matlab
for(i=1;i<=num_of_vertices;i++)
{
printpath(source,i,predecessor);
if(pathestimate[i]!=999)
printf("->(%d)\n",pathestimate[i]);
}
void printpath(int x,int i,int p[])
{
printf("\n");
if(i==x)
printf("%d",x);
else if(p[i]==0)
printf("Number Path From %d To %d",x,i);
else
{
printpath(x,p[i],p);
printf("..%d",i);
}
}
*PLEASE HELP ME

답변 (1개)

Guillaume
Guillaume 2015년 12월 4일
Functions are an essential part of programming languages and make the code clearer. Why wouldn't you want to use them in matlab?
Recursion also works in matlab, and in this case, I don't see any problem with using recursion. So once again, why would you not want to use it?
I would just simply use the exact same code structure. It's trivial to rewrite in matlab (just replacing printf by fprintf and [] by () is pretty much all that is required). However, I would add comments to the code and use meaningful variable names, so that whoever reads the code doesn't have to remember what the heck x, i and p are supposed to represent.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by