Effacer les filtres
Effacer les filtres

Number of functions in a function-M file

1 vue (au cours des 30 derniers jours)
Shalini
Shalini le 5 Mar 2012
Is it that there should be only one function in a function M file or there can be any number of functions in a function M file?

Réponse acceptée

Igor de Britto
Igor de Britto le 5 Mar 2012
A m-file can have more than one function.

Plus de réponses (2)

Shalini
Shalini le 5 Mar 2012
I have a function 'A'
Inside the function A, there is a variable computed 'z'
'z' should be returned from another function 'B' .'A' and 'B' should be in the same M file.
Can you tell me the syntax for such a situation/ returning a value within a function from another function?

Sean de Wolski
Sean de Wolski le 5 Mar 2012
function z = A;
z = B;
function z = B;
z = pi;
All of it saved in B.m

Catégories

En savoir plus sur Standard File Formats dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by