The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
4answers
3k views

Convert light frequency to RGB?

Does anyone know of any formula for converting a light frequency to an RGB value?
14
votes
4answers
26k views

How to create strings containing double quotes in Excel formulas?

How can I construct the following string in an Excel formula: Maurice "The Rocket" Richard If I'm using single quotes, it's trivial = "Maurice 'The Rocket' Richard" but what about double quotes?
13
votes
8answers
4k 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 ...
11
votes
4answers
729 views

Is there a TeX API for C++?

I want to preview TeX formulas in my User Interface. After a long time searching, it seems to me that there is no other possibility than write the formula into a .tex file call tex with system() and ...
9
votes
5answers
272 views

Looking for interesting formula

I'm creating a game where players can make an alloy. To make it less predictable and more interesting, I thought that the durability and hardness of an alloy should not be calculated by a simple ...
8
votes
1answer
899 views

Why are there 3 conflicting OpenCV camera calibration formulas?

I'm having a problem with OpenCV's various parameterization of coordinates used for camera calibration purposes. The problem is that three different sources of information on image distortion formulae ...
7
votes
2answers
248 views

Extract information from conditional formula

I'd like to write an R function that accepts a formula as its first argument, similar to lm() or glm() and friends. In this case, it's a function that takes a data frame and writes out a file in ...
7
votes
13answers
769 views

How many digits in this base?

The problem is to derive a formula for determining number of digits a given decimal number could have in a given base. For example: The decimal number 100006 can be represented by 17,11,9,8,7,6,8 ...
7
votes
4answers
1k views

Mathematical formula for calculating call duration

I was working for a telecom company some years ago and I had to generate a formula which calculates duration of a call according to the following algorithm: t1 is the first period t2 is the ...
6
votes
3answers
308 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: ...
6
votes
2answers
1k 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 ...
6
votes
3answers
203 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 ...
6
votes
10answers
347 views

Is there a way to have math formulas look nice on a web page (as in LateX, for instance)

I wonder if there is a framework or something else to display Math formula on a web page. Other than using images of those formulas...
6
votes
5answers
361 views

Creating a formula for calculating device “health” based on uptime/reboots

I have a few hundred network devices that check in to our server every 10 minutes. Each device has an embedded clock, counting the seconds and reporting elapsed seconds on every check in to the ...
6
votes
3answers
849 views

Simple formula for determining date using week of month?

Given a standard piece of scheduling information, such as "the second Tuesday in June 2009" or "the last Friday in July 2009", what's the simplest and most efficient formula to translate that into a ...
6
votes
8answers
18k 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 ...
5
votes
1answer
173 views

Math to determine item index based on col/row selection in grid

Me and 2 people have been trying to figure out what should be a simple formula. I have a grid, which can have a variable number of columns and rows. When the user clicks on one of the cells, I have to ...
5
votes
1answer
151 views

efficient renaming of variables in first-order formulae

edit2: Taking the hint that de Bruijn indices might be easier to work with, I've reformulated much of the internal representation of formulae to use a mixed de Bruijn representation ala Connor ...
5
votes
3answers
118 views

Algorithm for finding a formula that connects inputs and outputs

I seem to recall having learned a method for finding the formula that connects inputs and outputs from a table. For example: a b c | r 1 1 0 | 0 0 1 1 | 1 1 1 1 | 1 where "r" is the result, and a, ...
5
votes
3answers
326 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
3answers
2k 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 ...
5
votes
3answers
2k views

How do I brew update a formula?

How do i update a formula? I ran brew update. Then, running brew outdated, outputs: mongodb (1.4.3-x86_64 < 1.6.5-x86_64) Thus, mongodb is outdated. How do I upgrade it? Do I just uninstall ...
5
votes
2answers
507 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 ...
5
votes
2answers
1k 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: ...
5
votes
3answers
106 views

What — does in Excel?

Trying to decipher some Excel formulas and I see some stuff like SUMPRODUCT(--Left(...)...) What is the -- doing? Naturally seems like decrementing to me but couldn't find any documentation on it. ...
5
votes
1answer
645 views

Formulas in user-defined functions in R

Formulas are a very useful feature of R's statistical and graphical functions. Like everyone, I am a user of these functions. However, I have never written a function that takes a formula object as an ...
5
votes
7answers
3k views

Circle coordinates to array in Javascript

What's the best way to add the coordinates of a circle to an array in JavaScript? So far I've only been able to do a half circle, but I need a formula that returns the whole circle to two different ...
4
votes
1answer
54 views
+100

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. ...
4
votes
2answers
222 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 ...
4
votes
2answers
321 views

What does a R multi-part formula mean in mathematical terms?

in R Formula package, it introduces notions for multipart formula like y ~ x1 + x2|I(x1^2). what's this formula mean mathematically? how's this different from y ~ x1 + x2 + I(x1^2) or two independent ...
4
votes
3answers
3k 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 ...
4
votes
5answers
307 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 ...
4
votes
2answers
148 views

How to mitigate against bandwagon effect (voting behavior) in my ranking system?

What I mean by bandwagon effect describes itself like so: Already top-ranked items have a higher tendency to get voted on at all, possibly even to get upvoted. What I am hoping to get is some ...
4
votes
2answers
787 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|, ...
4
votes
3answers
378 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).
4
votes
5answers
180 views

How can I represent a formula in a way that is understood by both Javascript and PHP?

I'm writing a shopping cart in PHP, and part of its function is to calculate shipping for a given set of products. For users with Javascript enabled, I want to provide the smoothest experience ...
4
votes
3answers
713 views

Fast formula for a “high contrast” curve

My inner loop contains a calculation that profiling shows to be problematic. The idea is to take a greyscale pixel x (0 <= x <= 1), and "increase its contrast". My requirements are fairly ...
4
votes
3answers
700 views

Flesch-Kincaid Readability: Improve PHP function

I wrote this PHP code to implement the Flesch-Kincaid Readability Score as a function: function readability($text) { $total_sentences = 1; // one full stop = two sentences => start with 1 ...
4
votes
4answers
1k 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 ...
4
votes
3answers
669 views

Lens correction projection

What is the simplest way to un-warp a photo made using fisheye or wide-angle lens? I'm looking a pixel projection formula that has few parameters. Camera and lens parameters will not be known, so user ...
4
votes
12answers
373 views

What non-programming-specific formulas and laws do you use the most?

What non-programming-specific formulas do you use the most whilst working as a programmer? I'm thinking of non-trivial formulas/theorems from the field of mathematics, logic or science that you ...
3
votes
4answers
101 views

Two-Dimensional Lookup in Excel 2010

I have a data that looks similar to this Tables contains more than one row label heading (stacked row label): |20% |30% | |25/01/11 |buy |1 |1.1 | | ...
3
votes
4answers
113 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 ...
3
votes
2answers
85 views

Insert Round function into current cell using VBA

I'm trying to make it easier to insert the Round function into a number of cells that already have formulas in them. For instance, if cell A1 has the formula =b1+b2, after the use of this macro, I ...
3
votes
1answer
80 views

PHP & MySQL Graph Formula

I've been working on a site that requires a graph to show some data, and the way the data is shown is like this: I was wondering if anyone knew a correct formula for this graph, along with having ...
3
votes
1answer
143 views

What's the formula to increase the luminance in an image in a similar way how the L component in Photoshop does it?

For example I have a pixel with these values: CGFloat red = 34 // 0 - 255 CGFloat green = 128 CGFloat blue = 190 and I want to increase luminance so that blue is 255. NOTE: With "Luminance" I mean ...
3
votes
2answers
460 views

How to define the intersection of three circles?

Given three circles with their center point and radius, how can you define the area of intersection? So far what I have is: var point1 = {x: -3, y: 0}; var point2 = {x: 3, y: 0}; var point3 = {x: 0, ...
3
votes
3answers
408 views

Need a formula interpreter for .Net

I'm looking for a formula interpreter that I can use in a C# application. It needs to be able to interpret a string like this: max(1+2, 4) * x I found Writing a fast formula interpreter ...
3
votes
1answer
359 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) ...
3
votes
5answers
686 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 2 3 4 5 8