How to run a worksheet inside while loop
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
How to run a worksheet inside while loop
Hello everyone, I am new in programming with Mathcad Prime 4.0 and I am trying to found a solution to this problem.
I would like to make a while loop, in which a Mathcad worksheet is re-launched at each iteration.
To explain better: I have a worksheet (called ConvWorksheet) that compute a lot of stuff and in the end compute a convergence flag (1 if convergence is reached, 0 otherwise). I need to write an other worksheet that controls when ConvWorksheet has finally computed flag = 1. I tried with the "Include Worksheet" command inside the while loop, but I cannot insert it. Does anyone know how to do this? Thank you a lot!
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Neither Mathcad nor Prime supports this kind of functionality, although the question has popped up several times over the past 20 years.
The best you can do is to assemble your calculations into a function (or more functions) so that you can call the function(s) in a while loop.
Success!
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Neither Mathcad nor Prime supports this kind of functionality, although the question has popped up several times over the past 20 years.
The best you can do is to assemble your calculations into a function (or more functions) so that you can call the function(s) in a while loop.
Success!
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
It's true that it was never supported, but it was possible to do it in MC11 using a scripted component. They broke that in MC12, but even then you could loop a worksheet using a second worksheet, also via a scripted component. Prime of course does not have scripted components, so such trickery is not possible.
