maxiterations
Mar 04, 2012
04:55 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Mar 04, 2012
04:55 AM
maxiterations
Ia there a way to control the maximum number of iterations in Mathcad?
Another question: How to compute the calculation time of something like maximize or other solve blocks?
Labels:
- Labels:
-
Other
2 REPLIES 2
Mar 04, 2012
07:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Mar 04, 2012
07:31 AM
Mahmoud Mahmoud wrote:
How to compute the calculation time of something like maximize or other solve blocks?
Use please the function time(1)
t:=time(1)
....
(time(1)-t)*s=
Mar 04, 2012
07:35 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Mar 04, 2012
07:35 AM
Mahmoud Mahmoud wrote:
Ia there a way to control the maximum number of iterations in Mathcad?
n<-1
while...
...
n<-n+1
break if n>100
