Need a numerical evaluator

  • Thread starter Thread starter Academic
  • Start date Start date
A

Academic

I need an numerical expression evaluator.

Should I write one or is something freely available.



Thanks
 
There was supposed to be a second question.



I need an numerical expression evaluator.

Should I write one or is something freely available.

I'm considering a BASIC like capability instead of a simple expression
evalutor. Is that something I need to write or is something available. Maybe
something old that needs updating.
 
what kind of expression? Verifiy it's numerical? or what?

--
Thiele Enterprises - The Power Is In Your Hands Now!

--
There was supposed to be a second question.



I need an numerical expression evaluator.

Should I write one or is something freely available.

I'm considering a BASIC like capability instead of a simple expression
evalutor. Is that something I need to write or is something available. Maybe
something old that needs updating.
 
Things like value of 5*(2+sin(23))

Ryan S. Thiele said:
what kind of expression? Verifiy it's numerical? or what?

--
Thiele Enterprises - The Power Is In Your Hands Now!

--
There was supposed to be a second question.





I'm considering a BASIC like capability instead of a simple expression
evalutor. Is that something I need to write or is something available.
Maybe
something old that needs updating.
 
All math functions are in the math class. Sin Co-sign, PI, etc. The VS help
file come with extensive help in this class. As far a the math, just type

Dim d As Decimal = 5 * (2 + Math.Sin(23))

Hope this helps.
 
thanks

Ryan S. Thiele said:
All math functions are in the math class. Sin Co-sign, PI, etc. The VS
help
file come with extensive help in this class. As far a the math, just type

Dim d As Decimal = 5 * (2 + Math.Sin(23))

Hope this helps.
 
Back
Top