Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how to display the name of an input function by a function functions?

1 visualización (últimos 30 días)
Mr M.
Mr M. el 8 de Mzo. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I would like to write a function functions ff and run this way: ff(@inputfunc) which prints the name of the input function, in this case "inputfunc". How to do that?

Respuestas (2)

Matthew Eicholtz
Matthew Eicholtz el 8 de Mzo. de 2016
I am slightly confused by the wording of your question ("function functions ff"?), but I have a feeling that mfilename may be a good starting point.
You can use mfilename inside of a function to get the name of the currently executing function.
Does this help at all?

Fangjun Jiang
Fangjun Jiang el 8 de Mzo. de 2016
fhandle=@sin;
func2str(fhandle)
ans =
sin

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by