Need help with understand a function code

6 visualizaciones (últimos 30 días)
Fish Out Of Water :D
Fish Out Of Water :D el 13 de Oct. de 2011
JPGIMAGE([p '\' fn(z).name],trh);
The JPGIMAGE is my function while trh is the treshold.

Respuesta aceptada

Jan
Jan el 13 de Oct. de 2011
Then p is a string containing the path of the file, while fn is a struct array, whose element at index z carries the name of the file in the field 'name'.
You can inspect this in the command window: Set a breakpoint in this line and run th function until Matlab stops there. Then:
disp(p)
disp(fn)
disp(fn(z))
disp([p '\' fn(z).name])

Más respuestas (0)

Categorías

Más información sobre Data Import and Analysis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by