3
votes
1answer
42 views

Using R to interpret a symbolic formula for outside use

In R, the formula object is symbolic and it seems rather hard to parse. However, I need to parse such a formula into an explicit set of labels for use outside of R. (1) Letting f represent the ...
0
votes
2answers
117 views

Add space between time and PM/AM in spreadsheet

I have a spreadsheet with a couple hundred rows. Two of the columns contain times. There are 4 different possibilities for what the times can look like. The numbers can be anything, this is to ...
1
vote
2answers
119 views

SQL parser for formula passed as parameter

I have been tasked with writing a stored procedure that takes a user specified formula as parameter, and does calculations using tables on the formula. It's for the result of a competency test. The ...
10
votes
5answers
607 views

Java formula evaluation library with out-of-order variables feature

I'm currently looking for a java library (or native library with a java API) for formula parsing and evaluation. Using recommandations from here, I took a look on many libraries : JFormula JEval ...
2
votes
1answer
199 views

How to select a part of formula in formula in R?

Suppose I have a following formula: fr <- formula(y~myfun(x)+z) Given object fr is there a function in R which returns myfun(x)? I've written my own function (code below) which basically does ...
2
votes
2answers
434 views

Python spreadsheet-like formula parser?

I have a list of dictionaries such as: l =[{country:'Italy',sales:100,cost:50}{country:'Italy',sales:130,cost:60} {country:'Germany',sales:110,cost:50}] I want a python function that ...
3
votes
2answers
472 views

Parser interpreter programming

I want to program a package that calculates the resulting value of a certain input formula, I created the parser due to the Shunting-Yard Algorithm (Dijikstra), I want to create libraries of the ...
0
votes
1answer
202 views

Using GCMathParser for iphone development

I am trying to use GCMathParser in my iPhone application. To compile it, I changed #import <Cocoa/Cocoa.h> to #import <UIKit/UIKit.h> and replaced pi with M_PI and successfully compiled ...
5
votes
2answers
3k views

Mathematical expression (string) to number in Java

I'm trying to find something like Java Embedding Plugin (JEP) that can evaluate a mathematical formula (string) and give back the answer. But it should also calculate a variable, for example: ...
4
votes
5answers
2k views

Java 1.5: mathematical formula parser

Hello i often develop JTableModels in which some cells must contain the result of apliying a certain simple mathematical formula. This formulas can have: Operators (+,-,*,/) Number constants Other ...
1
vote
3answers
416 views

Formula Parser with Brackets

I need to implement a simple formula parser. What I am doing is first create a postfix notation and then evaluating the postfix string. Unfortunately, this algorithm doesn't allow brackets i.e. ...
6
votes
3answers
291 views

How would I code a complex formula parser manually?

Hm, this is language - agnostic, I would prefer doing it in C# or F#, but I'm more interested this time in the question "how would that work anyway". What I want to accomplish ist: a) I want to ...
4
votes
3answers
905 views

Parse Formulae in .NET

I am trying to parse formula in C# language like "5*3 + 2" "(3*4 - 2)/5" Is it possible to do in C# or scripts like VBScript, JavaScript (which will be called in c# program).
0
votes
5answers
2k views

Delphi, evaluate formula string

Duplicate Best algorithm for evaluating a mathematical expression? mathematical expression parser in Delphi? I need a program in Delphi that get one variable equation from Edit1 such as ...
0
votes
1answer
210 views

Formula in a database row - Java

Either this requirement is weird or i should be confusing myself too much I have a rule table with 30 columns. Every row from a feed file is compared against some or all conditions based on the type ...