What command to be used in Mathematica

  • Context: Mathematica 
  • Thread starter Thread starter kaizen.moto
  • Start date Start date
  • Tags Tags
    Mathematica
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
kaizen.moto
Messages
94
Reaction score
0
Hi,

Iam looking for a specific command(s) that could give outputs which are determinate only, i.e. only and only if the outputs are not infinity.

This is due to the fact that I have iterations cases (using Do-loop) which give both determinate and indeterminate outputs. However, I just wanted to generate the determinate outputs.

Please let me know.


Thank you.
 
Physics news on Phys.org
How about Select?

Select[result,NumericQ]

or build a notInfinityQ function that returns True when its argument is not infinity.