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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Evaluate function 1
Boolean Range 5
Boolean Expression Evaluator 2
Which order is evaluation done 3
VB 2010 Express 5
Evaluating A String as Code 7
evaluate or transform or ??? 3
Regular expression 5

Back
Top