Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
In the little program attached, I had inf in the if statement where I now have 10^3. When I had inf, the program ground away and then crashed the worksheet. 10^3 is plenty big enough for my case, but then I wondered what good is inf and when is it useful?
Solved! Go to Solution.
John Rudnicki wrote:
In the little program attached, I had inf in the if statement where I now have 10^3. When I had inf, the program ground away and then crashed the worksheet. 10^3 is plenty big enough for my case, but then I wondered what good is inf and when is it useful?
The Infinity symbol is most commonly used in symbolic integration, where it is treated as a symbolic infinity and not as just a Very Large Number. It is occasionally useful for returning a value when an operation might, say, result in an error at a singularity; for example, it might be used to represent the result of a n/0 operation.
For graphing purposes, adn depending upon the exact version of Mathcad that you have, you could replace your -103 with the built-in constant NaN. This is used to represent a missing or faulted value in a data set and has the distinct advantage of being skipped in 2D graphs. If you have NaN, then try it.
Stuart
John Rudnicki wrote:
In the little program attached, I had inf in the if statement where I now have 10^3. When I had inf, the program ground away and then crashed the worksheet. 10^3 is plenty big enough for my case, but then I wondered what good is inf and when is it useful?
The Infinity symbol is most commonly used in symbolic integration, where it is treated as a symbolic infinity and not as just a Very Large Number. It is occasionally useful for returning a value when an operation might, say, result in an error at a singularity; for example, it might be used to represent the result of a n/0 operation.
For graphing purposes, adn depending upon the exact version of Mathcad that you have, you could replace your -103 with the built-in constant NaN. This is used to represent a missing or faulted value in a data set and has the distinct advantage of being skipped in 2D graphs. If you have NaN, then try it.
Stuart
Thanks.
No worries, John.
Stuart