The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
2answers
20 views

algorithm to solve system of equations

Can anyone give me an algorithm so solve Systems of equations of this kind: aX1 + bY1 + cZ1 = 0 aX2 + bY2 + cZ2 = 0 aX3 + bY3 + cZ3 = 0 I don't know how to implement an algorithm so ...
0
votes
0answers
9 views

Hoe to read Inline Shapes(Microsoft equation 3.0) from doc fie as XML?

I'm doing a project on online based examination system. Currently the questions are primarily added in a 2007 Word Document file. And these questions contain complex mathematical equations? I want to ...
1
vote
4answers
47 views

Solving a Variable Equation defined by the User

Answers in C, Python, C++ or Javascript would be very much appreciated. I've read a few books, done all the examples. Now I'd like to write a simple program. But, I already ran into the following ...
-2
votes
0answers
31 views

Solving two variables equation numerically [closed]

I've been trying to find the locus of a hyperbola numerically in a specific range. Currently I assume x and calculate y using solve command. I wondered if there was any other way to extract the locus. ...
-3
votes
2answers
25 views

Recursion with growing squares [closed]

I ran into a problem while programming that I realized would be best solved using recursion. I'm trying to draw a square that grows outwards, depending on the value that is given. For example: If ...
4
votes
2answers
57 views

Implementing iterative solution of integral equation in Matlab

We have an equation similar to the Fredholm integral equation of second kind. To solve this equation we have been given an iterative solution that is guaranteed to converge for our specific ...
-6
votes
0answers
78 views

Newton's Law of Cooling on C++ [closed]

I've got equation dT/dt = -k(T - Tm) I need to model it on c++ and cant understand, should I use T(t)=Tm+(Ta - Tm)*exp(k*t). So with that code I get wrong output cause I'm tired of it. How can I ...
-2
votes
5answers
116 views

Generate valid equation from four numbers by placing arithmetic operators [closed]

I'm trying to solve various puzzles of recursion and one problem I came across is Equation Generator. I'm unable to understand how to solve this problem. The problem statement is like this. You ...
4
votes
2answers
87 views

Find x in a^x = a (mod n)

I want to calculate am mod n, where n is a prime number, and m is very large. Rather doing this with binary power calculation, I'd like to find such x that ax = a (mod n) and then calculate a(m mod x) ...
0
votes
4answers
53 views

Python- stuck trying to create a “free hand” calculator

I'm trying to create a calculator program in which the user can type an equation and get an answer. I don't want the full code for this, I just need help with a specific part. The approach I am ...
0
votes
2answers
19 views

Linear Equations

I have a program in C# that asks the user for the 4 values. They are: MinIndex, MaxIndex, MinValue, MaxValue I want to be able to determine the value for any given index within the [MinIndex ...
0
votes
3answers
44 views

I am getting NaN for an answer to my quadratic equation calculator- JAVA

This is my main class: import java.util.Scanner; public class calc { public static void main(String[] args){ Scanner variablea = new Scanner(System.in); Scanner variableb = new ...
0
votes
0answers
12 views

Multi-Section equation

I want to write a multi-section equation: first part on the left-hand side and the other part on the right-hand side (but at the same level), the part on the right-hand side in a two-line accolade ...
0
votes
1answer
48 views

Solving a non-polynomial equation numerically

I've got a problem with my equation that I try to solve numerically using both MATLAB and Symbolic Toolbox. I'm after several source pages of MATLAB help, picked up a few tricks and tried most of ...
-2
votes
0answers
22 views

How can I convert a black and white png image to cartesian piecewise functions? [closed]

I have a calculus project with polar coordinate graphing and I was wanting to create a graph of an image. I have a black and white coloring page of a logo (deadmau5) and I want to grab the XY data of ...
0
votes
2answers
58 views

Can't get an answer from Matlabs solve function

When I try to use solve with my predefine functions and vectors I get the following error message: Warning: Explicit solution could not be found. In solve at 169 In cardanAngles at 33 I ...
0
votes
0answers
15 views

Working out how much is being utalized by a link

Assume we want to send an 8000 bit packet over a 1 Gbps link. It has a 15ms propagation delay. Calculate: The transmission delay (td) for the packet The utilization of the link. This is the fraction ...
1
vote
1answer
46 views

Fast way for solving symbolic system of equations in Matlab

I have a system of equations with 100001 variables (x1 through x100000 and alpha) and exactly that many equations. Is there a computationally efficient way, in Matlab or otherwise, to solve this ...
0
votes
1answer
26 views

Solve for influence of nodes in graph in Matlab

I have a directed, unweighted graph with 5 nodes: x1 through x5. The edges are: x1->x3 x2->x1 x2->x5 x3->x2 x3->x4 x4->x5 x5->x2 I want to solve this set of equations ...
-1
votes
1answer
19 views

Unable to solve matlab expressions [closed]

Hello I am new to matlab I have problem solving this simple expression r=10*sin(10)+10*cos(y); This expression is basically a result of the simple integeral equation I coded but now I am unable ...
0
votes
0answers
23 views

MySQL and Form with equation

So I have a Form that looks like this Section | Length | Number Dropdown of sections | Integer | Integer Then I have a SQL that looks like this Section (List of sections) | ...
0
votes
1answer
17 views

Can muparser parse a function with different definitions over different domains?

I have the following function f(x): f(x) = fun1(x) if x<a f(x) = fun2(x) if a<=x and if x<b f(x) = fun3(x) if b<=x Is there a syntax such that I can write this function into a string ...
-1
votes
0answers
45 views

solving an equation using matlab

I am trying to solve an equation using matlab using fminunc. Equation is like this F(x) = f1(x)*exp^f2(x)+f3(x)*exp^f4(x)+f5(x)*exp^f6(x)+f7(x)*exp^f8(x) After setting the parameter i used this ...
0
votes
0answers
37 views

google maps lat and long to draw 2 lines side by side

This is a google maps question - Is there an equation or does anyone know how I could plot 2 lines (using lat/long) which lay side by side and don’t overlap (with say a small gap between them) which ...
0
votes
1answer
46 views

Javascript code for equations

I searched a solution but I keep have the same problem. I have a javascript code that solves a second degree equation. Here there is my code:: var x1 = document.getElementById('x1').value; var x2 = ...
0
votes
0answers
40 views

Trapezoidal rule using subroutine

I am trying to write a program on fortran using subroutines. The program needs to be able to integrate the function 3x^2-5x-4 from x=3 to x=8 using the trapezoidal rule. So far I have wrote: PROGRAM ...
0
votes
2answers
79 views

Solving 1 equation with 2 variables in php

I am trying to find the solution of a^10-b^15 = 10510100501 Is there a way to find it? I wrote the following code in PHP but with no result: <?php $total = 0; $a=0; $b=0; ...
3
votes
1answer
90 views

How to convert Word Equation to an Image?

I want when i Copy/Paste an equation on a RichTexyBox(wpf/win) I Convert it to an Image.How can I do it?Or Can I get it from clipboard as an image ?
1
vote
1answer
66 views

String equation for simple to complex equations (2)

Yes! Thanks for the help on the last question! For the specified string equation, it worked perfectly! But now I'm having trouble when it comes to two parentheses (whether open or close) are together ...
-7
votes
1answer
90 views

Simultaneous equations in C# LINQ [closed]

I am not 100% sure the right term is simultaneous equation. It could also be function group. My problem is that I am trying to solve equations with two or more unknowns with LINQ. For example: x + ...
0
votes
1answer
33 views

scilab plotting factorial; first trying to correct the equation?

I'm trying to execute this equation in scilab; however, I'm getting error: 59 of function %s_pow called ... even though I define x. n=0:1:3; x=[0:0.1:2]; z = factorial(3); w = factorial(n);u = ...
0
votes
3answers
66 views

String equation for simple to complex equations

I'm trying to write a program that solves any equation (from simple to complex) in the form of a string by using an Arraylist to break down the equation into seperate parts. It checks for parentheses ...
1
vote
3answers
50 views

How to determine next level using a formula?

Thank you for any help you can provide on this. If we have: $level = floor((-1 + sqrt(1 + 4 * ($c_xp + 500) / 100 * 2)) / 2) - 1; //GET LEVEL For instance if: $c_xp = 1200 Then: $level = 4 ...
0
votes
0answers
34 views

Solving an equation symbolicly using matlab [closed]

I have an equation which i need to solve using matlab (e2*Yn3 - e3*Yn2)*(e1*Yn2+e2*Yn1)*(e0*Yn1-e1*Yn0)*exp(o1+o2)+ (e2*Yn3 - e3*Yn2)*(e1*Yn2-e2*Yn1)*(e0*Yn1+e1*Yn0)*exp(o2-o1)+ (e2*Yn3 + ...
0
votes
2answers
46 views

vb.net random maths

Does anyone know how I would randomly generate a basic maths problem where the answer was always 1,2,3 or 4. So for instance using two random numbers 8 and 4 I might display the question: 8 / 4 so ...
0
votes
1answer
119 views

Generate Equation from 3D surf Plot in Matlab

I am wondering if anyone knows (or is it possible?) how to generate a trend equation from a 3D surf plot from Matlab? I understand that we can create trendline for 2D plots (linear and nonlinear) and ...
0
votes
2answers
118 views

bitxor, solve equation, boolean logic

I have the equation: C = A^b + (2*A)^b + (4*A)^b. Where C and A are known, but b is unknown. How to find b? All numbers are 8 bit bytes. Is there any possible method much faster than ...
1
vote
2answers
109 views

recurrence equation from fibonacci algorithm

I want to find the recurrence equation to compute the time complexity int Fib(int n) { if (n <= 1) return n; else return Fib(n - 1) + Fib(n - 2); } I can solve the ...
0
votes
1answer
45 views

Matlab function to isolate a variable in an equation

I have been searching a function to do “subjecting” in Matlab. I'm not sure whether it is called as subjecting or by some other name. Let me explain the functionality. Let's say I have an expression ...
3
votes
2answers
223 views

convert RGB to grayscale in C

I used many formulas to convert from RGB to grayscale, but didn't get good results compared to GIMP. I already tested the following formulas: gray = (int)(0.299 * r + 0.587 * g + 0.144 * b); gray = ...
0
votes
2answers
131 views

Solve a transcendental equation in C

I need solve this transcendental equation in C: x = 2.0 - 0.5sen(x) I tried this: double x, newx, delta; x = 2.0 - 0.5; newx = sin(x); delta = fabs(newx * x); printf("%f", delta); This is ...
0
votes
2answers
120 views

Calculating String Values

I am making a program in C# that takes an equation from the user input and evaluates it. At the moment I have a way of it calculating the user input and also taking values from stored variables such ...
2
votes
1answer
52 views

Matlab ~ linear equation?

do any one know how to solve this equation in MATLAB? F_I*cosd(alpha_I) - F_C(cosd(alpha_C)) = 0 F_I*sind(alpha_I) - F_T_1 + F_C*sind(alpha_C) = 0 F_T_1*abs(x_F_C-x_T_1) - ...
0
votes
1answer
14 views

Octave Keep String Constant in Equation

In Octave, can I do something like the following: answer = 'x' + 1 so Octave prints out: answer = x + 1 In other words, can I keep some variable names as variable names when evaluating an equation?
0
votes
2answers
47 views

create equation function acting across rows in R

I have a dataframe similar to the one this creates: dummy=data.frame(c(1,2,3,4),c("a","b","c","d"));colnames(dummy)=c("Num","Let") dummy$X1=rnorm(4,35,6) dummy$X2=rnorm(4,35,6) dummy$X3=rnorm(4,35,6) ...
0
votes
0answers
53 views

Howto create a matrix in google drive equations

I want to create a matrix in google drive write equations. Does anybody know the backslash command for this?
1
vote
1answer
49 views

Increase Java's Computational Abilities

So I'm not sure exactly if this is a problem of Eclipse, Java, or my computer. What I'm trying to do is basically 2^57885161-1. But, sadly, all that Eclipse outputs is "Infinity". My deduction is ...
0
votes
0answers
341 views

Equation of motion by Runge-Kutta continuation method in Matlab

Equation of motion is given by: ,where m, b are stationary values of mass and damping. The time varying term f(t) is excitation power and q(t) is generalized displacement. I solved that: ...
0
votes
1answer
48 views

Is there method to calculate the equation in pic? [closed]

Only x_k is unknown. Any method to solve this equation? The equation always exist. I have tried use solve() in matlab to solve this equation. But failed after any strive.
1
vote
1answer
66 views

Retrieve variables and equation from database and solve them [duplicate]

My client wants to save an equation formula in a database (Oracle). In this formula they want to use abbreviations of the variables names (field in a table containing the variables) as a descriptive ...

1 2 3 4 5 8