1
vote
3answers
63 views

How to evaluate a function at a point in Matlab?

For example, if I have a function f(x)=x^2, how can I evaluate it at x=2? I have tried employing the symbolic toolbox and using the following code in the Command Window: syms x; f = sym(x^2); ...
1
vote
3answers
681 views

Python: Math expression parsing [closed]

Python: So I am working on a program (which is a class assignment) that will take an expression such as 3/4/5 or 32432/23423/2354325 or 3425*343/254235 or 43252+34254-2435, etc(for all operators from ...
0
votes
3answers
112 views

Can't push values into stack from command line arguments in Java

I have a weird problem in java. I am trying to make a math expression calculator which would evaluate an infix math expression and return the final result on the screen. I have used stacks to ...
0
votes
2answers
2k views

Evaluate mathematical expression within string

I'm developing an Android app that i get an String with the mathematical expression i have to calculate, i did it to convert the letters into the numbers i need, but what is the best way to evaluate ...
10
votes
1answer
1k views

VB.Net- Evaluating Mathematical Expression in a String

Is there a method that allows me to evaluate a mathematical expression in a string? Example (Not actual Code): Input = "2+2" Output = SomeMethod(Input) Output = 4 Update: Nevermind, I found a way ...
11
votes
6answers
4k views

What is easiest way to calculate an infix expression using C language?

Suppose the user inputs an infix expression as a string? What could be the easiest ( By easiest I mean the shortest) way to evaluate the result of that expression using C language? Probable ways are ...
21
votes
19answers
27k views

c# evaluating string “3*(4+2)” yield int 18 [duplicate]

Is there a function the the .Net framework that can evaluate a numering expression contained in a string and return the numeric result? IE: string mystring = "3*(2+4)"; int result = ...