Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
the ordinate values for W(D,M) exceeds 10^307 at some points in calculation. I want to assign 10000 to W(D,M) in those cases. Please see attached mathcad file. Thanks for A to A.
Solved! Go to Solution.
You are using "on error" the wrong way.
It has to be the first statement (otherwise the error occurs and your routine fails) and calculation which may fail is on the RHS, not the LHS.
The following should do the job, but on first sight it looks to me that the value of M does not influence the result.
You are using "on error" the wrong way.
It has to be the first statement (otherwise the error occurs and your routine fails) and calculation which may fail is on the RHS, not the LHS.
The following should do the job, but on first sight it looks to me that the value of M does not influence the result.
Thank you very much Werner_E !!!!!