Clear Filters
Clear Filters

Using a script with different inputs from a table

1 view (last 30 days)
AA
AA on 30 Jun 2015
Commented: Adam on 30 Jun 2015
I have a script which has an input x. I have a table n with various numbers. I want the script to be executed in such a way that the numbers from table n are used in each instance. For example, n= 3,74,53,8,53
Then run the script once with x=3, after displaying the results run the script again but with x= 74... And so on. Has anyone got an idea how I can process this automatically?
Thanks
  1 Comment
Adam
Adam on 30 Jun 2015
You should use a function instead of a script. Then you can pass arguments into it and run it multiple times if needed. Or have the function run on a table/vector of inputs itself so that it produces multiple answers rather than calling it multiple times.

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!