Skip to main content
2 votes
0 answers
83 views

The following algorithm is intended to uniformly sample priority (or criterion) vectors from a transformed version of the simplex (which is a surface in 3d space). The transformation involves taking ...
Engr. Moiz Ahmad's user avatar
1 vote
1 answer
149 views

I have a set of K dimension standard basis vectors and the (K-1)-simplex defined over these vectors. I want to divide this simplex into sub-simplexes which partition the original simplex using ...
Joe Emmens's user avatar
0 votes
1 answer
37 views

I am working on an optimization problem about the WFP where i basically have a set of countries where each contry belongs to a specific region. And each country is also represented by an Emergency ...
rui's user avatar
  • 1
0 votes
1 answer
77 views

I tried to do a simplex algorithm in Python and all the tableaus and values were right but, at the last iteration, there were values on the objective function that were off I'm using sympy and numpy. ...
Maria Fernanda's user avatar
0 votes
1 answer
341 views

I am trying to solve a simple simplex tableau using the python library scipy. c = [7, 9, 18, 17] A = [ [2, 4, 5, 7], [ 1, 1, 2, 2], [ 1, 2, 3, 3] ] b = [42, 17, 24] from scipy.optimize ...
NEWO-o's user avatar
  • 1
1 vote
1 answer
109 views

I'll get the ball rolling with this: I converted Simplex noise written in java to lua and found myself caught on a potential out of bounds error being reported as an attempt to index a nil value. I've ...
David B Roberson's user avatar
0 votes
1 answer
151 views

Is there a way to use solver in a way to maximise X wilst using as little of budget Y as possible? Looked onlime but can't find any MOLP videos using excel, mainly just mathematical literature. this ...
Reece Donaldson's user avatar
0 votes
1 answer
137 views

I need a way of finding an exact value made of the sum of variables chosen from the population. The algorithm can find just the first solution or all. So we can have 10, 20, or 30 different numbers ...
Celltech's user avatar
0 votes
1 answer
135 views

I am using the following code to find x and y in this linear equation. I was wondering if there is a way to add two more constrains to the following equation? For example, how can we add x>0 , and ...
Mehmet Fatih Yasar's user avatar
0 votes
1 answer
49 views

I want to do something like this: dvar Q [1..10]; maximize min(i in 1..10) Q[i] ; Q has 10 different values which i don´t know, i want that the minimun of all those values be as high as possible But ...
user16555238's user avatar
0 votes
1 answer
179 views

I am trying to use the networkx network_simplex() function with a directed graph. In the official documentation it says: This algorithm is not guaranteed to work if edge weights or demands are ...
oakca's user avatar
  • 1,588
0 votes
1 answer
65 views

I am not sure if what I have done so far is correct, and I need help with the iterative step as I don't understand what is going on in the algorithm. Here is my code. Help to finish this would be much ...
Shrine 420's user avatar
0 votes
1 answer
1k views

I have a matrix A of dimension 1000x70000. my loss function includes A and I want to find optimal value of A using gradient descent where the constraint is that the rows of A remain in probability ...
Pratik Karmakar's user avatar
0 votes
1 answer
389 views

Typically when generating seamless Simplex noise the strategy is to go to 4-dimensions (a strategy which has worked well for me in the past when using 2-D Simplex), however I am trying to generate a ...
erik's user avatar
  • 3,862
1 vote
0 answers
305 views

The Bowyer-Watson algorithm for Delaunay triangulation is known to run in O(n^2) according to the authors, where n is the number of data points in R^d. In addition, the algorithm (for example, as is ...
Joe Doe's user avatar
  • 11

15 30 50 per page
1
2 3 4 5
9