Skip to main content
1-Visitor
March 4, 2012
Question

maxiterations

  • March 4, 2012
  • 2 replies
  • 1562 views

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?

2 replies

24-Ruby IV
March 4, 2012

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=

24-Ruby IV
March 4, 2012

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