how to pass parameters to a .m file in matlab command window?

5 vues (au cours des 30 derniers jours)
madhu
madhu le 12 Sep 2012
I have a .m file which requires some parameter to execute a function in it. I want to execute that .m file through command window. Now how to pass the parameter to that m file..?
  1 commentaire
Jan
Jan le 12 Sep 2012
Is the M-file a script or a function?

Connectez-vous pour commenter.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 12 Sep 2012
Modifié(e) : Azzi Abdelmalek le 12 Sep 2012
If your parameters are in workspace, your m file will recognize them
If this m file is used many times, I recommand to use a function
  4 commentaires
Azzi Abdelmalek
Azzi Abdelmalek le 12 Sep 2012
If file1 is your m file name and needs parameters a,b and c
>>a=10;b=12;c=14 %your parameters
>>file1
Azzi Abdelmalek
Azzi Abdelmalek le 12 Sep 2012
Modifié(e) : Azzi Abdelmalek le 12 Sep 2012
No; it's not possible. if your m file uses a variable x, you have to affect a value to x
>> x=10
>>file1

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Workspace Variables and MAT Files 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