×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Loop output as input

Loop output as input

Loop output as input

(OP)
Hi there

I have written a program that calculates averages of a very large set of data to reduce the amount of data I need to handle. I have attached the algorithm. My problem is that I want to run the algorithm a number of times with different starting values (more than I care to do manually) and get a number of outputs. The new starting values I want to use are output from the previous calculation.

In other words, I want to loop one of the outputs of my algorithm back in as an input and get a table of the results from each calculation.

If you look at the attached mathcad sheet I basically want the computer to automatically do Calc(0) then Calc(b) then Calc(c) x number of times, without having to write out x number of Calc()

Any help would be much appreciated, even if it is to say this is not possible!
Replies continue below

Recommended for you

RE: Loop output as input

You can add another function below your Calc function to do this.  For instance:

Results(x):= | table<-Calc(0)
             | index<-table[0,2
             | for i = 1;x
             |      newtable<-Calc(index)
             |      table<-augment(table,newtable)
             |      index<-newtable[0,2
             | table

You could also stack the results instead of augment depending on how you want to display them.

Peter
 

RE: Loop output as input

(OP)
Peter, I can't thank you enough! Exactly the advice I needed.

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close