Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

to change without using function in MATLAB

1 Ansicht (letzte 30 Tage)
chan
chan am 4 Dez. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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

Antworten (1)

Guillaume
Guillaume am 4 Dez. 2015
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.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by