The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
155 views

How to let -1==-1.0000000000001

Here is a part of my code: double tmp = OP.innerProduct(OQ); double tmp2 = -1; and the value of tmp and tmp2 is: (in binary) tmp = ...
0
votes
1answer
23 views

Can I use the R approx() function to return a different value then what is being interpolated?

So basically I have a large data frame to two columns, one time column and one size column. I then have another data frame with just one time column. I want to interpolate the times from the data ...
1
vote
2answers
46 views

Optimal shift scheduling algorithm

I have been trying for some time solve a scheduling problem for a pool that I used to work at. This problem is as follows... There are X many lifeguards that work at the pool, and each has a specific ...
0
votes
1answer
42 views

Make python use more resources in calculations

Hi I'm trying to do some matrix calculations using python. The problem is there seems to be a limit of how much CPU will the process consume (about 13% of my Core i7). Is there a way I can make it ...
-2
votes
0answers
27 views

Auto Regressive Modelling in MATLAB [closed]

I have around 1000K long time series with me. I am trying to come up with an AR model for that. Here are the steps I followed: Divided the samples in size of 100 with 20 sample overlapped p_buf ...
0
votes
1answer
33 views

An algorithm to skip 3D curve points

Currently I am drawing a 3D curve consisting of 1200...1500 straight micro-lines directed by an array of 3D points (x,y,z), but rendering is a bit slow regardless of used technology (Adobe Flash, ...
0
votes
1answer
50 views

Considering elements together which are approximately equal

We have some elements characterized by some key value. We consider the elements in descending order of key values. So, if we have ten elements with key values, 4, 5, 7, 10, 2, 8, 9, 10, 8.5, 9, we ...
1
vote
0answers
13 views

Calculating lower bound with stirlings approximation

We have this exercise in school, where we are to calculate the lower bound of an algorithm. We know that the lower bound is: Log_6((3*n)! / n!^3) and we are to use stirlings approximation to ...
0
votes
2answers
99 views

Which node to choose as a starting node for nearest neighbor algorithm

http://en.wikipedia.org/wiki/Nearest_neighbour_algorithm I'm using nearest neighbor algorithm to solve traveling salesman problem. It's extremely fast, but not accurate. I read somewhere about two ...
0
votes
0answers
80 views

Find an optimal combination of rows and columns in a matrix

I have a computational problem in C++, not sure if I can ask it here, I could not find anything fitting so far. I have a vector of objects, each containing another vector with certain values. Now I ...
1
vote
1answer
54 views

Random sampling to increase accuracy of pressure estimate?

In our simulations, we have an underlying 2D grid over which a closed curve (red line) can move. Grid cells are coloured, based on the location of their centre, as either inside the curve (green) or ...
2
votes
1answer
66 views

PHP wrong approximation with printf

I am fully aware of the floating point representation in binary format, so I know there are mathematical "impossibilities" when trying to perfectly represent a floating point number in any programming ...
0
votes
1answer
176 views

Evolving a Neural Network in Matlab to approximate a function [closed]

I need to learn how to evolve a neural network to approximate a function (e.g sin, XOR). I just want to see a working example using a genetic algorithm (Encoding, Genotype, etc). I am interested in ...
1
vote
2answers
127 views

Newton Raphson algorithm in Python is not working; only estimates into one direction

READ FIRST: The problem was simply that the parenthesis of the absolute value should be around the actual score. The issue now is that it actually is not precise enough, it ignores the 0.000001, and ...
0
votes
1answer
84 views

Approximation to find a value using Python

So I have one vector of alpha, one vector of beta, and I am trying to find a theta for when the sum of all the estimates (for alpha's i to n and beta's i to n) equals 60. math.exp(alpha[i] * (theta - ...
0
votes
0answers
68 views

Artificial neural network Function Approximation for sine inverse

I am working on a project that tries to approximate sine inverse function with Matlab. So my input and targets are as follows: Target=(rand(numangle,Nex)*(2*pi)-pi)'; Input=sin(Target) + ...
0
votes
2answers
99 views

TSP-Variant, possible algorithm?

One of the classical Travelling Salesman Problem (TSP) definitions is: Given a weighted complete undirected graph where triangle inequality holds return an Hamiltonian path of minimal total weight. ...
1
vote
0answers
103 views

Pseudo polynomial or fast solution for the relaxed subset-sum

I have an array A of positive integers [a0, a1, a2, ..., an] and a positive number K. I need to find all (or almost all) pairs of subsets U and V of array A such as: sum of all elements in U are ...
1
vote
1answer
101 views

0-1 integer linear programming approximation algorithms

Hi I am looking for an approximation algorithm for 0-1 integer linear programming. Currently the approximation algorithms I find need to relax the interval to be [0,1]. However, my problem can only ...
1
vote
1answer
82 views

Neural Network (FFW, BP) - function approximation

is it possible to train NN to approximate this function: If I tun approximation for x^2 or sin or something simple, it works fine, but for this sort of function i got only constant valued line. My ...
0
votes
1answer
60 views

Maximizing profit in graph having positive weight cycles

I have a set of vertices with some profit defined between each pair of vertices such that profit(i,j) may not be equal to profit(j,i). Moreover there exist positive weight cycles and the profit may ...
2
votes
2answers
129 views

Finding path between all points using approximation algorithm

There is 1<=n<=1000 cities. I have to find path that connects all the cities (every city can be visited only once) which starts and ends in city number 1. In this path the maximum length between ...
2
votes
1answer
57 views

Approximation algorithm. How to find shortest cycle that gains >= x points

There's a map with points: The green number next to each point is that point's ID and the red number is the bonus for that point. I have to find fastest cycle that starts and ends at the point #1 ...
3
votes
2answers
240 views

Contour approximation containing undesired points

Hi there i have a polygon problem. I don't know what to look for so i decided to ask here. The image below shows a simple shape. The contours are detected with OpenCV's findContours() and aproximated ...
1
vote
1answer
327 views

Bezier curve approximation for large amount of points

I have about hundred points, that I want to approximate with Bezier curve, but if there are more than 25 points (or something like that), factorial counting in number of combination causes number ...
1
vote
0answers
61 views

approximate polynomial by linear inequalities

I have a polynomial b*p + a*q + y = 0 where b,p,a,q,y are integer variables. It specifies some area. 1) If there a way (an algorithm) to specify linear inequalities, that the area they are ...
4
votes
1answer
72 views

How to approximate LUT index?

I have an array ... //a b {860, -30}, {853, -29}, {846, -28}, {838, -27}, {830, -26}, {822, -25}, {814, -24}, ... What is the quickest way using C to find find b with given a ...
0
votes
0answers
12 views

Computational complexity-literature

Could anyone recommend me a good book,web page or set of exercises with solutions and explanations to problems, such as: computational complexity, notations, approximation recursion.
1
vote
1answer
74 views

Approximate Minimum Feedback Arc Set implementation in Java

I'd like to find an implementation of an approximate algorithm for the Minimum Feedback Arc Set in Java but I did not find anything so far. Does anyone have something in mind?
0
votes
0answers
87 views

Multivariate Function Approximation With A Large Dataset

I have a nice amount of data from a trading strategy I am working on, where I have two different liquidity parameters as x,y variables. Before entering a trade I am taking the moving average of ...
0
votes
1answer
61 views

Logic for rate approximation

I am looking for some logic to solve the below problem. There are n transaction amounts : T1,T2,T3.. Tn. Commission for these transactions are calculated using a rate table provided as below. if ...
0
votes
3answers
494 views

Trying to approximate the value of natural log e and the number of term use to calculate e

package homework1C; public class Homework1C { public static void main(String[] args){ double term =2,sum; int n; final double difference = 0.0000000001; double x; ...
2
votes
2answers
186 views

In what situation would a taylor series for a polynomial be necessary?

I'm having a hard time understanding why it would be useful to use the Taylor series for a function in order to gain an approximation of a function, instead of just using the function itself when ...
1
vote
3answers
723 views

For loop for counting approximation of pi in C

My program am I am trying to make is supposed to approximate pi using C using the series pi = 4 * (1 - (1/3) + (1/5) - (1/7) + (1/9) - (1/11) ...) and so on. Now, from the command line, the program ...
1
vote
1answer
100 views

How close to a circle is a circle made with NSBezierPath ?

Let's say I make a circle with this code to draw a circle of radius 1 around the origin: NSBezierPath * p = [NSBezierPath bezierPathWithOvalInRect:NSMakeRect(-1,-1,2,2)]; NSLog(@"cercle=%@",p); ...
1
vote
3answers
487 views

String Approximation (Fetching the nearest matched String from Dictionary)

Is there any String Matching code or Algorithm which gives us the approximately matched string from the dictionay(contains pre-defined Set of Strings)? For example: If there are 10 String in the ...
0
votes
3answers
435 views

RGB Similar Color Approximation Algorithm

Given that in RGB we can represent 256^3 combinations = 16,777,216 colors, and since the human eye can only distinguish roughly 10,000,000, there is obviously a surplus of 6,777,216 RGB combinations ...
0
votes
0answers
135 views

Roundoff errors [closed]

I'm studying numerical analysis and computational physics. I understood the troncation error (mathematical approximation) but the roundoff errors are not so clear for me. Can someone explain why (and ...
1
vote
3answers
130 views

Differentiable approximation of the round() Matlab function

Could you possibly suggest a differentiable approximation for the round Matlab function? The round function looks like this: I would like a differentiable function which [closely] resembles the ...
1
vote
0answers
147 views

Approximate and Interpolate GPS Trajectory

I have a sequence of gps values each containing: timestamp, latitude, longitude, n_sats, gps_speed, gps_direction, ... (some subset of NMEA data). I'm not sure of what quality the direction and speed ...
0
votes
0answers
131 views

moving average accuracy?

I have some data where people vote on things, and it would be nice to have an average for each item of how everyone who has voted on it has voted. You can think of the votes as a stream of constantly ...
0
votes
0answers
133 views

Graph partitioning based on nodes and edges weights

I have a graph G=(V,E) that both edges and nodes have weights. I want to partition this graph to create equal sized partitions. The definition of the size of partition is sum(vi)-sum(ej) where vi is ...
1
vote
2answers
232 views

bin packing with overlapping objects

I have some bins with different capacities and some objects with specified size. The goal is to pack these objects in the bins. Until now it is similar to the bin-packing problem. But the twist is ...
0
votes
1answer
80 views

Optimization of unusual fitting algorithm

I have two different sets of randomly distributed experimental data. I need to make one of the distributions as much similar to another as possible by applying some function to each of its values. ...
2
votes
1answer
517 views

AR model with MATLAB

I'm using the following code taken from MATLAB documentation to estimate the parameters of an ARMA model: y = sin([1:300]') + 0.5 * randn(300, 1); y = iddata(y); mb = ar(y, 4, 'burg'); At ...
0
votes
1answer
72 views

least squares approximate 1D data by a given amount horizontal lines

The problem is following. I have 1D array of data, that i need to approximate by a given amount of horizontal lines (for example, by 3 lines) in the optimal way (so, the summary error becomes ...
1
vote
0answers
112 views

How to select the “best” new point when sampling a near-parabolic function?

The objective function is guaranteed to be finite and contionuous in the interpolation range [a, b] along with its first and second derivatives and has no more than one minimum in this range (if it ...
2
votes
1answer
268 views

How to resample an array of n elements into an array of m elements

I have an array of N measurements that I should present as a graph, but the graph can be only of M pixels wide and is scrolled only by M pixels. While M is constant, N can be anything from tens to ...
0
votes
0answers
204 views

mathematica: define inverse only where it exists [closed]

I try to shortcut some function approximation and iteration work with asking Mathematica to calculate things best it can. But this involves using an inverse function a pure function, being negligent ...
5
votes
2answers
343 views

Approximation algorithm for TSP variant, fixed start and end anywhere but starting point + multiple visits at each vertex ALLOWED

NOTE: Due to the fact that the trip does not end at the same place it started and also the fact that every point can be visited more than once as long as I still visit all of them, this is not really ...

1 2 3