Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
10answers
3k views

Solving a linear equation

I need to programmatically solve a system of linear equations in C, Objective C, or (if needed) C++. Here's an example of the equations: -44.3940 = a * 50.0 + b * 37.0 + tx-45.3049 = a * 43.0 + ...
6
votes
2answers
243 views

Why permutation matrices are used to swap rows of an array?

What are the advantages of using a permutation matrix to swap rows? Why one would create a permutation matrix and then apply a matrix multiplication, is it easier and more efficient than just swapping ...
3
votes
1answer
75 views

Python left multiplication of of a matrix with inverse of a sparse matrix

I'm trying to calculate an expression of the form K = P*C.T*S^-1 (implementation of a Kalman filter) All the involved matrices are sparse, and I would of course like to avoid calculating the actual ...
3
votes
3answers
220 views

Library for finding any solution of any number of linear equations with any number of variables

I have to finding any solution (there may exist many or none) of any number of given liner equations with any number of variables. In Java. What libraries and method use? What to implement? I want to ...
2
votes
2answers
410 views

Solution basis of underdetermined equation set in python

I have an underdetermined equation set (m equations of n variables, m smaller than n). As such, if it is solvable then the set of solutions are a linear space (if it is a homogenic set) or affine ...
1
vote
1answer
33 views

Solving equations in a cell array

I have some linear equations in a cell array like this ( The number of equations vary each time ) : equs = { '2*X1+X2+6', '3*X2-X1' } How can I solve these equation with Matlab? I can get my answer ...
1
vote
2answers
107 views

Library for solving system of linear equations with tridiagonal matrix?

I am modelling physical system with heat conduction, and to do numerical calculations I need to solve system of linear equations with tridiagonal matrix. I am using this algorithm to get results: ...
1
vote
3answers
180 views

How to identify subtriangle within a rectangle given a coordinate in that rectangle

Given a rectangle of width w and height h. and a coordinate x,y in that rectangle I would like to identify which triangle I am within. i.e. the function should take parameters(x,y) and return ...
1
vote
7answers
3k views

How can I solve a system of linear equations in Excel?

I have a system of 22 linear equations (exactly 22 equations and 22 unknowns) which are dynamically generated in an Excel spreadsheet. Is there a way to have Excel solve the system and produce a value ...
1
vote
4answers
2k views

how to solve linear equations using genetic algorithm

hello i want to solve a system of n linear equations containing n variables using genetic algorithm. i am having difficulty in defining the crossover operation as the solution may consist of floating ...
1
vote
3answers
6k views

Correct way to standardize/scale/normalize multiple variables following power law distribution for use in linear combination

I'd like to combine a few metrics of nodes in a social network graph into a single value for rank ordering the nodes: in_degree + betweenness_centrality = informal_power_index The problem is ...
0
votes
0answers
49 views

Photo collage algorithm

I am trying to build a script that will dynamically arrange photos like a collage very similar to what is done on http://lightbox.com/explore#spotlight. I can off course write code that would handle ...
0
votes
3answers
98 views

Two Unknowns 3 Equations

I have 3 eqns and 2 unknowns Hb and Hbo2, they look like this: Bxy = AB * HB + AB * Hbo2 Rxy = AR * HB + AR * Hbo2 Gxy = AG * HB + AG * Hbo2 Now I have been trying to use a matrix method in order ...
0
votes
2answers
583 views

Validating linear equations with regular expressions?

How can I validate linear equations with regular expressions or is there another way besides using regular expressions. I will use ^ to denote an exponent. 2x + 3 = 8 //This should validate fine 3x ...
0
votes
1answer
493 views

Which one is faster / more stable: inverting matrix or solving three systems of linear equations with multiple right hand sides?

I have two equations I'm solving on each recursive round: X = A - inv(B) * Y * inv(B), X = X + A' * inv(B) * A, I solve the problem this way: C = inv(B)Y <=> BC = Y, solve C. D = Cinv(B) <=> ...