Tagged Questions
0
votes
4answers
113 views
php calculate formula in string
So I have formula as string
$comm = "(a x 5% - 2%)";
I want it to be $comm = $a * 5/100 * (1-2/100);
How can I do this in php?
-2
votes
1answer
70 views
How to show formulas / equations in Cocoa environment? iOS and Mac OS development [closed]
UIView / UILabel subclassing? I think there is not any default class to do this. Thank everyone.
-2
votes
1answer
80 views
Using PHP function to solve for a missing numbers [closed]
I have a pool of 16 numbers 1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768. I have a number that is comprised of some combination of the 16 numbers using 1 - 16 of them added up. For ...
0
votes
1answer
66 views
Expression Programming
I have built a full working calculator that evaluates any expression and graphs it. I have also built a Symbolic Differentiator that correctly differentiates the formula w.r.t. x but im a bit lost for ...
0
votes
0answers
198 views
How to write equations in an Android textview?
I want to display some equations in my android app and was wondering how to display a simple equation. Any ideas?
EDIT: Is it possible to do to this in the xml file or does it has to defined ...
3
votes
3answers
236 views
Safest way to use eval to parse equations entered by a form
I'm wondering what sorts of things should be checked when using eval() in PHP to parse a formula that is entered by a user filling out a form. I've seen lots of answers about eval(), but not all of ...
0
votes
1answer
92 views
Split screen based on number of items and screen ratio
I have to split the screen equally (as possible) given a dynamic number of items.
So i need to find the number of columns and rows based on the screen size/ratio.
Each item size is not important ...
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 ...
-3
votes
1answer
177 views
Java: How do I rewrite a latex formula to a format Java can understand? [closed]
An example is shown here:
https://encrypted-tbn2.google.com/images?q=tbn:ANd9GcQIfX05Ry1eGxqeNr8lkIuEaJyQHoYlQ_eLVXsJv7m2nI320p1V
Any tutorials/books on how to translate?
4
votes
4answers
957 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 ...
0
votes
2answers
57 views
When showing a formula I need to see the text horizontal to the value being used…in Excel
For example I have in one row pretax income and tax paid, then to the right I have a number representing them, say (c5)10 and (c7)13. Then below I have a ration "effective tax rate" and to the right ...
9
votes
1answer
560 views
Flash library for math equations and graphs, like DragMath and PetitGrapheur
I'm working on e-learning solution and our project requires free or commercial component for math formulas and graphs rendering.
Use cases are:
built in flash or flex;
compose math equlation like ...
3
votes
1answer
244 views
sperical law of cosines formula
I'm tring to calculate a point's longitude from the other point's longitude. They have the same latitude and the distance between them is known. I try to use the sperical law of cosines formula.
# ...
5
votes
2answers
4k 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|, ...