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

9 views (last 30 days)
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..?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 12 Sep 2012
Edited: Azzi Abdelmalek on 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 Comments
Azzi Abdelmalek
Azzi Abdelmalek on 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 on 12 Sep 2012
Edited: Azzi Abdelmalek on 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

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!