Calling a function inside another function ?

I have a function called [S]=FirstFunction(a,b) inside this function, i want to call another function called [a,b,c]=SecondFunction(a)
How do i do this? Thanks :)

Respuestas (1)

Walter Roberson
Walter Roberson el 4 de Sept. de 2016
function S = FirstFunction(a,b)
[a, b, c] = SecondFunction(a); %just call it
S = .... something

Categorías

Más información sobre MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 4 de Sept. de 2016

Respondida:

el 4 de Sept. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by