how to call a function

1 Ansicht (letzte 30 Tage)
dav
dav am 31 Okt. 2013
Kommentiert: dav am 31 Okt. 2013
Hi,
I am running a simulation program. in each simulation i have to use a number which i have to generate in a separate function.
The issue for me is can I call a function with out an INPUT and get the output.
Any small example code is highly appreciated!
dav

Akzeptierte Antwort

Andy
Andy am 31 Okt. 2013
Write the function you need and save it in the active directory or on the path i.e.
function [newnumber] = examplefunction
newnumber = rand;
end
From command window or in other m-file call the function by simply writing: -
x = examplefunction;
  1 Kommentar
dav
dav am 31 Okt. 2013
thank you very much!!!!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Modeling finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by