Tagged Questions

1
vote
3answers
231 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 …
0
votes
0answers
59 views

how to solve linear equations using genetic algorithm [closed]

Possible Duplicate: how to solve linear equations using genetic algorithm hello i want to solve a system of n linear equations containing n variables using genetic algorit …
0
votes
2answers
68 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 shou …
8
votes
10answers
1k 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-4 …
0
votes
1answer
196 views

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

Hi, 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, so …
1
vote
3answers
809 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_inde …
2
votes
2answers
153 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 …