0
votes
1answer
54 views
Equations Solver function in Matlab. How do I handle [eqns,vars] = getEqns(varargin{:}) errors?
I am using Matlab and am using its solve function. I run this code and I keep getting this error
[eqns,vars] = getEqns(varargin{:})
I realized I had some parens issues and fixed t …
3
votes
10answers
1k views
Equation Solvers for C++
I need to solve a few mathematical equations in my application. Here's a typical example of such an equation:
a + b * c - d / e = a
Additional rules:
b % 10 = 0
b >= 0
b <= …
0
votes
0answers
6 views
Is there any free Equation Editor Control
Hi am going to do some project there i need
to show integral , sigma, pie , etc.. so is there any equation edtior controls available. so
I have to integrate to my Asp.Net proje …
2
votes
9answers
279 views
Simplest way to solve mathematical equations in Python
Short Question:
Lets say, I want to solve Project Euler problem 9 using python and some equation solving libraries.
a + b + c = 1000.
a2 + b2 = c2
How do you do it.
Long Que …
1
vote
1answer
62 views
WolframAlpha: Solve Multiple Functions
I'm trying to use WolframAlpha to solve for a variable.
I have
u(k, r) = (900-3k)r^(k-1)
and
s(n, r) = sum u(k, r), k=1 to n
and I want to solve for r with
s(5000, r) = -60 …
0
votes
5answers
222 views
How do I break a long equation over lines?
I am trying to add an equation in a new line. The problem is that the equation is too long for the line, and I need to break it manually. Otherwise, it just overlaps to the right c …
0
votes
3answers
49 views
Combobox with comparison operators
I actually have an equation to make on visual basic.
An exemple of it
(12 = 12) AND (12>1)
true and true
the answer would be TRUE
But for both comparison operators …
6
votes
18answers
3k views
Equation (expression) parser with precedence?
I've developed an equation parser using a simple stack algorithm that will handle binary (+, -, |, &, *, /, etc) operators, unary (!) operators, and parenthesis.
Using this me …
0
votes
6answers
340 views
How to Solve Equations with java ?
Hi guys,
according to below 3 Equations
x+y+z=100;
x+y-z=50;
x-y-z=10;
how to get the value of x,y,z with java?
=============================================
String equation1 …
0
votes
2answers
166 views
MATLAB: Why does solve return an empty sym object?
I´m trying to solve this set of equations in MATLAB and I get an empty sym object:
equations = {'I2B+I2EQAB=I22B+I2EQBC',...
'I2A=I2EQAB+I2EQAC+I22A',...
…
1
vote
3answers
192 views
Help with Probability Equation
I'm trying to put together an app for fun that has a scenario where I need to figure out a probability equation for the following scenario:
Suppose I have a number of attempts at …
-1
votes
2answers
304 views
Latex Referencing Figures Tables Equations etc
\ref{3-wire-oxides} wont work for me, any idea why??
where i have figure inserted as below
\begin{figure}[!h]
\begin{center}
%\includegraphics[scale=0.6]{images/proxy}
\in …
0
votes
2answers
482 views
Rearrange equations for solver
Hi guys,
I am looking for a generic python way to manipulate text into solvable equations.
For example:
there may be some constants to initialize
e1,e2=0.58,0.62
ma1,ma2=0.85,1 …
1
vote
3answers
197 views
How to plot implicit equations
Hello.
What is the usual method or algorithm used to plot implicit equations of 2 variables?
I am talking about equations such as,
sin(x*y)*y = 20
x*x - y*y = 1
Etc.
Does a …
1
vote
6answers
398 views
Mathematical Equation Manipulation in python
Hi,
Actually I want to develop a GUI app which displays a given mathematical equation. And when you click upon a particular variable in the equation to signify that it is the unkn …
