A formula is a mathematical equation or expression that performs various operations on variables to produce an outcome.

learn more… | top users | synonyms

9
votes
7answers
5k views

free Java library for evaluating math expressions

Is there a free and open source library for evaluating math expressions in Java? In one of my projects I want to add a feature where the user can provide in a formula, for example sin (x + pi)/2 + 1 ...
3
votes
2answers
2k views

Drawing formulas with Quartz 2d

In my iPhone App I'd like to draw a few formulas. How can I manage that with quartz 2d? Is there a way to build formulas like for example in latex? Or are there any existing frameworks? Thanks.
12
votes
2answers
4k views

How to do a fractional power on BigDecimal in Java?

In my little project I need to do something like Math.pow(7777.66, 5555.44) only with VERY big numbers. I came across a few solutions: Use double - but the numbers are too big Use BigDecimal.pow but ...
12
votes
3answers
5k views

Get formula from Excel cell with python xlrd

I have to port an algorithm from an Excel sheet to python code but I have to reverse engineer the algorithm from the Excel file. The Excel sheet is quite complicated, it contains many cells in which ...
7
votes
4answers
13k views

Turn a string formula into a “real” formula

Hey there, Ive got another question. Lets say i got "0,4*A1" in a cell (As a string) and on another cell I want to convert this "string formula" into a real formula and calculate its value, how can I ...
46
votes
5answers
9k views

Convert light frequency to RGB?

Does anyone know of any formula for converting a light frequency to an RGB value?
7
votes
5answers
10k views

Formula px to dp, dp to px android

I am trying to calculate a variable amount of pixels to density independent pixels and vice-versa. This formula (px to dp): dp = (int)(px / (displayMetrics.densityDpi / 160)); does not work on small ...
5
votes
3answers
5k views

Typesetting LaTeX fraction terms to be larger in an equation

I have the following formula in LaTeX, based on Fisher's Exact Test. (NOTE: requires the use of the amsmath package for \binom.) \begin{equation} P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, ...
2
votes
11answers
13k views

Prime Number Formula

I am trying to write a prime number function in C# and I am wondering if the follow code will work. It "appears" to work with the first 50 numbers or so. I just want to make sure it will work no ...
7
votes
8answers
38k views

Any solution to the Today Calculated Column problem is SharePoint?

I would like to be able to use today's date in a calculated column in a SharePoint list to, for example, determine whether a task is overdue. There is a well-documented trick that involves creating a ...
3
votes
2answers
396 views

Explain - Formula to curve through a control point

I have a question regarding formula curving through a control point. As you know, HTML Canvas has quadraticCurveTo(x1, y1, x2, y2) with x1 and x2 being the control point. However when you try to draw ...
15
votes
9answers
6k views

LaTeX equivalent to Google Chart API

I'm currently looking at different solutions getting 2 dimensional mathematical formulas into webpages. I think that the wikipedia solution (generating png images from LaTeX sourcecode) is good enough ...
7
votes
2answers
8k views

How to calculate distance based on phone acceleration

I want to build something like this but using an android phone: http://www.youtube.com/watch?v=WOt9mb5QqRs I've already built an app that sends sensor information via socket (still looking for a good ...
12
votes
4answers
2k views

Formula with dynamic number of variables

Suppose, there is some data.frame foo_data_frame and one wants to find regression of the target column Y by some others columns. For that purpose usualy some formula and model are used. For example: ...
4
votes
6answers
6k views

Making Excel functions affect 'other' cells

Let's say that I create a Sub (not a function) whose mission in life is to take the active cell (i.e. Selection) and set an adjacent cell to some value. This works fine. When you try to convert that ...
7
votes
3answers
2k views

Library to Parse a string as a formula, that works with Windows Phone 7

Are there any .NET libraries out there that will parse a string as a formula? ie; "if the user inputs "(2 +5) * 2", the library will be able to work out the calculation? Edit:Preferably something ...
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: ...
2
votes
6answers
2k views

Need a formula: Extracting Years from Seconds Since January 1, 0001 12:00 AM

Input: # of seconds since January 1st, of Year 0001 Output: # of Full years during this time period I have developed an algorithm that I do not think is the optimal solution. I think there should be ...
4
votes
5answers
3k 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 ...
4
votes
1answer
3k views

Native SQL query for an Hibernate entity using @Formula results in NullPointerException

I've got an simple Hibernate entity for which I use the @Formula annotion: @Id private Long id; private String name; @Formula("(select count(f.*) from foo f where f.id = id)") private long bar; ...
2
votes
2answers
232 views

Reading rpart Input Parameters from a Text Variable

I'm using rpart to make a decision tree. For example: fit <- rpart(Kyphosis ~ Age + Number + Start, data=kyphosis) How do I read in the formula part from a text file and get it in a format that ...
1
vote
2answers
498 views

Running lagged regressions with lapply and two arguments

I am running multiple univariate regressions, like in this reproducible example: require(dynlm) data(USeconomic) US<-USeconomic vars<-colnames(US)[-2] a<-lapply(colnames(US),function(x) ...
1
vote
1answer
4k views

How to map a property with formula in NHibernate?

I have a class which I want to add a property with using formula attribute. Here is the mapping that I use in mapping file. <property name="CurrentUserVote" type="Climate.Domain.Vote, ...
0
votes
1answer
162 views

Excel: last non empty cell of a column [closed]

I have this kind of table: A | B | C | D -----+-----+-----+---- 1 | 2 | X | 5 | | f | 3 | 5 | R | 12 Z | 3 | T | x | G | | ...
0
votes
2answers
648 views

Parsing a string formula to an integer result

I'm doing some parsing work, too complex to get into details, but there's one simple thing I need to do (at least simple concept, maybe not simple answer). I might have a formula in a string such as ...
12
votes
5answers
848 views

Spreadsheet-like formulas on the DOM

I am looking for a way to dynamically bind formulas throughout my DOM. We have a data intensive app, and currently I write many handlers to try and recalculate and update the appropriate cells. ...
12
votes
4answers
55k views

Simulate string split function in Excel formula

I am trying to split a string in an excel formula, something like I can do in many programming languages, e.g. string words = "some text".split(' '); The problem is that I can't be sure that there ...
2
votes
3answers
2k views

Hibernate Criteria order by a specific state

Hi In the database, we have a PRSN_ADDRESS table which has many addresses. A user is shown these addresses in a grid. The requirement is show the addresses associated with this user's state first and ...
4
votes
5answers
859 views

String to Number and back algorithm

This is a hard one (for me) I hope people can help me. I have some text and I need to transfer it to a number, but it has to be unique just as the text is unique. For example: The word 'kitty' could ...
3
votes
1answer
992 views

Pyramid scheme formula in PHP?

I'm working on a referral system - the formula is exactly like the pyramid/ponzi scheme. The system works like this: The initial user signs up (tier 1) The initial user refers 3 friends (tier 2) ...
2
votes
2answers
2k views

iPhone - AVAudioPlayer - convert decibel level into percent

I like to update an existing iPhone application which is using AudioQueue for playing audio files. The levels (peakPowerForChannel, averagePowerForChannel) were linear form 0.0f to 1.0f. Now I like ...
6
votes
2answers
1k views

Converting coefficient names to a formula in R

When using formulas that have factors, the fitted models name the coefficients XY, where X is the name of the factor and Y is a particular level of it. I want to be able to create a formula from the ...
6
votes
3answers
297 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 ...
5
votes
2answers
5k views

Using relative positions in Excel formulas

How do I create a formula that isn't made invalid when I delete a row. For example in cell F12 I have the formula: =F11+D12-E12 This basically says take the value from the cell above then add the ...
2
votes
1answer
12k views

How to VBA change cell's value (display text) without changing its formula?

I've a problem with this VBA macro. Sub demoChangeText() Application.Range("B2").Value = "Overidden text" End Sub My test is here. To run this macro, open it in Excel, press Ctrl+F8 and choose ...
2
votes
2answers
1k views

Weighted trendline

Excel produces scatter diagrams for sets of pair values. It also gives the option of producing a best fit trendline and formula for the trendline. It also produces bubble diagrams which take into ...
2
votes
4answers
1k views

Storing formula (equations) in database to be evaluated later (SQL Server 2005)

I'm calculating linear regressions based on a data set. I do not know the regression model or number of parameters at compile-time. I'm storing the regression equation in a SQL Server 2005 database ...
2
votes
1answer
2k views

How to convert Math Formula to Python code?

Are there any easy ways to convert mathematical formulas to Python code? Perhaps translators, web reference, specific book chapters, anything ~ For regular expressions there are programs such as ...
2
votes
1answer
15k views

How can I run a VBA code each time a cell get is value changed by a formula?

I would like to know how can I run a VBA code each time a cell get is value changed by a formula?? Ive managed to run a code when a cell gets its value changed by the user, but it doesn't work w
1
vote
1answer
2k views

Macro to open Excel hyperlink does not work when hyperlink generated with a formula

There seems to be a bug with Excel hyperlinks which are generated with a formula. I'm using Excel 2010. I have a spreadsheet with cells containing URLs, and my goal is to do the following two ...
1
vote
1answer
128 views

Displaying (nicely) an algebraic expression in PyQt

In my python program is a hierarchy of mathematical objects I've created, that represent mathematical formulae. For example, there's Collection, which is a series of Equations, which is a container of ...
1
vote
1answer
5k views

How to find the Center Coordinate of Rectangle

I have drawn a rectangle.. I know its (x1,y1) Top Left and (x2,y2) Bottom Right coordinates.. I also have the height h and width w of drawn rectangle.. How can I find the center coordinates (x,y) ? ...
1
vote
4answers
206 views

PHP Formula For a Series of Numbers (Mathy Problem)

My apologies if this is the wrong site for this problem, as it is more math-related than programming. I am trying to write a series of 7 page links, in a Google-esque fashion. Essentially, it will be ...
1
vote
4answers
2k views

Get quadratic equation term of a graph in R

I need to find the quadratic equation term of a graph I have plotted in R. When I do this in excel, the term appears in a text box on the chart but I'm unsure how to move this to a cell for subsequent ...
0
votes
0answers
52 views

Phpexcel calculate formula across sheet page is too slow

@Mark Baker;recently, I use the PHPExcel in my program,and there are some formula e.g: =VLOOKUP($A8,items_item!$A:$Z,16,0) and From the log file that I added in order to monitor the ...
-2
votes
3answers
83 views

Excel: Is there a formula for this big space in between another? [closed]

I have content which looks like this below in the excel. i need to trim away all the unnecessary info. Only keep the -.pdf. The remaining will be removed. i have tried several formula but only able to ...
4
votes
5answers
889 views

All possible moves in a 5x5 grid?

s o o o o o o o o o o o o o o o o o o o o o o o e How can I calculate all possible paths, without using the same square twice, that a person could take to get from s to e? I've created a grid array ...
4
votes
4answers
1k views

Algorithm to move mouse from one point to another in a straight line

I am trying to make a small program that will move the mouse from the current position to the given position. Here is a method that i can use which will move the mouse from one point to another but ...
4
votes
4answers
2k views

Generate Images for formulas in Java

I'd like to generate an image file showing some mathematical expression, taking a String like "(x+a)^n=∑_(k=0)^n" as input and getting a more (human) readable image file as output. AFAIK stuff like ...
3
votes
4answers
2k views

Have a Crystal Reports formula convert numeric strings to values, but leave non-numeric blank/null

I have a string field that mostly contains numeric decimal values, but sometimes contains values like "<0.10" or "HEMOLYSIS". I want to use a formula to convert these numeric value strings to ...

1 2