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