Using a script with different inputs from a table

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

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)

Asked:

AA
on 30 Jun 2015

Commented:

on 30 Jun 2015

Community Treasure Hunt

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

Start Hunting!