Tagged Questions
The linear tag has no wiki summary.
19
votes
17answers
2k views
How fast can you make linear search?
I'm looking to optimize this linear search:
static int
linear (const int *arr, int n, int key)
{
int i = 0;
while (i < n) {
if (arr [i] >= key)
...
18
votes
8answers
5k views
nth fibonacci number in sublinear time
Is there any algorithm to compute the nth fibonacci number in sub linear time?
10
votes
10answers
29k views
What is the difference between Linear search and Binary search?
What is the difference between Linear search and Binary search?
9
votes
5answers
2k views
Math - mapping numbers
How do I map numbers, linearly, between a and b to go between c and d.
That is, I want numbers between 2 and 6 to map to numbers between 10 and 20... but I need the generalized case.
My brain is ...
8
votes
2answers
5k views
Cubic/Curve Smooth Interpolation in C#
Below is a cubic interpolation function:
public float Smooth(float start, float end, float amount)
{
// Clamp to 0-1;
amount = (amount > 1f) ? 1f : amount;
amount = (amount < 0f) ? ...
6
votes
5answers
210 views
Haskell : invert a permutation in linear time, using only lists
I want to define a function
invert :: [Int] -> [Int]
that assumes that its input is a permutation of [0..(n-1)], and returns its inverse. Can one define it using only lists and tuples (without ...
5
votes
2answers
155 views
Haskell : find smallest nonnegative integer not in list in linear time, using only lists
Consider a function minout :: [Int] -> Int which takes a list of distinct nonnegative integers, and returns the smallest nonnegative integer not present in the list. The behaviour of the function ...
5
votes
4answers
1k views
SQL Server view: how to add missing rows using interpolation
Running into a problem.
I have a table defined to hold the values of the daily treasury yield curve.
It's a pretty simple table used for historical lookup of values.
There are notibly some gaps in ...
4
votes
3answers
890 views
Python function to solve Ax = b by back substitution
Okay, for my numerical methods class I have the following question:
Write a Python function to solve Ax = b by back substitution, where A is an upper triangular nonsingular matrix. MATLAB code for ...
4
votes
3answers
893 views
Interpolation advice (linear, cubic?)
I need to find good approximations of the points where an undefined function intersect a threshold value. I'm stepping through my space and whenever I find that two subsequent steps are on different ...
3
votes
3answers
33 views
Linear-time general parser
I've been reading Dick Grune's Parsing techniques 1st edition for quite a while now, the book is from the mid-90's and the author argues that no such parsing method (Linear-time general parsing) has ...
3
votes
1answer
695 views
How is the intercept computed in the GLM fit?
I have been reading the code used by R to fit a generalized linear model (GLM), since the source-code of R is freely available. The algorithm used is called iteratively reweighted least squares ...
3
votes
2answers
151 views
Non-graphical linearity estimation
In my previous post, I was looking for correlation ratio (η or η2) routines in R. I was surprised by the fact that no one uses η for linearity checking in the GLM procedures.
Let's start ...
3
votes
1answer
626 views
Find shortest combination of words that contain every character from a specified set
I got an array (let's call it a1) of words (like "dog", "fish", "run", "programming" anything) that's really huge.
I can combine any of the words out of a1 with any other of the words (e.g. you could ...
3
votes
4answers
454 views
Counting solutions to linear inequalities
I am trying to solve a problem which I have reduced down to counting the number of integer solutions to a number of linear inequalities. I need to be able to count the number of solutions for any ...
3
votes
5answers
870 views
Math equation to calculate different speeds for fade animation
I'm trying to add a fade effect to my form by manually changing the opacity of the form but I'm having some trouble calculating the correct value to increment by the Opacity value of the form.
I know ...
2
votes
3answers
77 views
Linear Interpolation to find coord in triangle
Suppose you have the following three points A, B, and C as shown in the following picture:
The points are always sorted according to their vertical offset, so the top most point is always A. ...
2
votes
2answers
87 views
Sort array in linear timer and in place
question origin
Given an unsorted array of size n containing objects with ids of 0 … n-1, sort the array in place and in linear time. Assume that the objects contain large members such as binary ...
2
votes
1answer
58 views
Implementing additional constraints in R's nnls
I am using the R interface to the Lawson-Hanson NNLS implementation of an algorithm for non-negative linear least squares that solves ||A x - b||^2 with the constraint that all elements of vector x ≥ ...
2
votes
2answers
104 views
Find all combinations of a multiset in a string in linear time
You haven given a bag B (multiset) of characters with the size m and a string text S of size n. Is it possible to find all substrings that can be created by B (4!=24 combinations) in S in linear time ...
2
votes
2answers
276 views
Mathematica - Force Logarithmic Scale on Plots & Grouped Axes Labels
I have a ListPointPlot3D plot and all three axes contain a logarithmic distribution of data points.
Like this:
..... . . . . . .
How do I ...
2
votes
5answers
101 views
searching bit-field templates (codebooks)
I've got a bunch of 8-bit values in a codebook (about 200 of them).
My program will be generating an 8-bit value in response to input, and I need to find all (or even the first is helpful) of the ...
2
votes
0answers
296 views
R package Limma -contrast matrix differential expression
I am using limma to analyse differential gene expressions.
For modeling u need a design and contrast matrix. I just want to know whether anyone has experience with it.
Suppose that expressions are ...
2
votes
2answers
141 views
x,y,z to vector offset
i know this may sound stupid but im goin crazy with this XD
I'm loading ad image (with ImageMagick) into a 1D vector, so that i have something like:
012345678...
RGBRGBRGB...
Where 0-.. are ...
2
votes
5answers
513 views
Linear Sort of a 2D Array in C
I am a newbie to C programming and was trying to prepare some sorting programs. I made the program of linear/ normal Sorting.
Now i want to make a program to sort 2D array.
i.e.
if the matrix is
4 ...
2
votes
1answer
285 views
Linear Model with Constraints, [R]
I'm quite new to R and I have a following problem:
I have a simple 2-factor linear model:
Rate~factor1 + factor2 //factor1 has 8 categorical values, factor2 has 6 categories;
model1 <- ...
2
votes
2answers
127 views
How to see scaling matrices from a geometric perspective
I'm using XNA but it doesn't matter too much for this example. So let's say I have a sprite. I then apply a scaling matrix before anything. Is the scaling matrix applied scaling the local axis of the ...
2
votes
1answer
2k views
Android Linear Layout - Difference between weight and FILL_PARENT
According to documentaion, FILL_PARENT basically lets the view take up the entire extra space. Weight also dictates how much of the extra space can be taken by the view. What is the difference?
For ...
2
votes
2answers
355 views
Android - Padding in different phones
Say I add a linear layout with top padding of 20. Does it mean that the layout is rendered with 20 pixels of padding in all phones? Or does it scale according to the height/width/density of the phone?
...
2
votes
1answer
339 views
R: ggplot2, how to get the parameters from a plotted linear model smoother?
I have a data.frame with 3 time series in it, shown below. When I plot them with a smoother time series, I want to be able to get the parameters of the linear model that I plot, but I can't see how ...
2
votes
1answer
75 views
O'Reilly book clarification on 2d linear system
The Oreilly book "Learning openCV" states at page 356 :
Quote
Before we get totally lost, let’s consider a particular realistic situation of taking measurements
on a car driving in a parking lot. ...
2
votes
2answers
745 views
Choose the right classification algorithm. Linear or non-linear?
I find this question a little tricky. Maybe someone knows an approach to answer this question. Imagine that you have a dataset(training data) which you don't know what it is about. Which features of ...
2
votes
2answers
593 views
Linear Hashing Implementations
Does anyone know if there is a C# implementation of Linear Hashing? Failing that are there any implementations in any other language where the code is available?
2
votes
2answers
387 views
Linear relationships for two (x,y) graphs
I have x,y data coming in from a [coordinates1] database (GIS - but this could be any database). I have my application with it's own coordinate system, referencing THE SAME MAP.
I have established ...
2
votes
9answers
698 views
linear transformation function
Problem: I need to write a function that takes 4 bytes as input, performs a reversible linear transformation on this, and returns it as 4 bytes.
But wait, there is more: it also has to be ...
1
vote
1answer
53 views
Optimization of a linear real valued function of real variables, subject to constraints
I have a set of real variables (and functions) { c_1, c_2, c_3, c_4 }, where c_3 and c_4 are independent ones, and c_1, c_2 are the functions of c_3, c_4:
c_1 = f_1( c_3, c_4 )
c_2 = f_2( c_3, c_4 )
...
1
vote
1answer
18 views
Linear Algebra Library for large dense matrices
I'm implementing a linear regression algorithm for geological data analysis and I am falling in the situation where the linear system matrix does not fit on any of the mainframe computers RAM and any ...
1
vote
3answers
184 views
Solving a system of linear equations in a non-square matrix
I have a system of linear equations that make up an NxM matrix (i.e. Non-square) which I need to solve - or at least attempt to solve in order to show that there is no solution to the system. (more ...
1
vote
2answers
124 views
Point in polyhedron test in linear time
Assume we have a 3D polyhedron which has N vertices.
How do you test if a point is inside in time O(n).
There is supposed to be a linear algorithm, my searches were, however, unsuccessful.
1
vote
0answers
126 views
Efficient Algorithms for Computing a matrix times its transpose
For a class, a question that was posed by my teacher was the algorithmic cost of multiplying a matrix times its transpose. With the standard 3 loop matrix multiplication algorithm, the efficiency is ...
1
vote
2answers
52 views
Parameterizing two lines that intersect
Assume we have two lines
y1 = (m1)(x1) + b1
y2 = (m2)(x2) + b2
But now assume that they intersect. I am trying to re-write them in terms of each other, knowing that they intersect. I found online ...
1
vote
2answers
69 views
Matrix linear indexing
I need to traverse a rectangular grid in continuous manner. Here is an example of what I want, the number means sequence:
+ x
y 0 1 2
5 4 3
6 7 8
At each step I know the index ...
1
vote
1answer
49 views
How does look up for a hash table work in .NET?
I tried to compare the performance of a hash table lookup and linear search. I created a hashtable containing 1000 items and found out the time taken to do a look up in the hash table to be 0.0002 (I ...
1
vote
1answer
77 views
Predicting the output of Linear Congruential PRNG's
I thought this topic would be a widely discussed one, but after a while of googling pretty much all I could find was references to a few mathematicians, on which further research didn't give me ...
1
vote
2answers
131 views
Real World Optimization Problem [closed]
I and my classmates have this term project in our Discrete Math Modeling class where we need to find the actual problem and make an attempt to optimize it. We decided that we wanted to do something ...
1
vote
0answers
56 views
Is there a function to calculate linear regression for array of points in Accelerate Framework for iPhone?
I am looking for a fastest / easiest solution to calculate regression for bunch of double points stored in array.
I have tried to find proper function in Accelerate framework or tutorial but with no ...
1
vote
1answer
114 views
Two Stage Probit Least Squares in R: CDSIMEQ Code in R by eyjo user
This is regarding the R code as posted by the user eyjo on Oct 4 '10 at 15:48. I have a question related to the code associated with finding the Var(alpha1hat). As per Madalla (1983) the formula for ...
1
vote
1answer
291 views
Is there a java library that implements Strassen's algorithm for matrix inversion?
I am working on a project that compares the various matrix inversion algorithms (Gauss-Jordan, Strassen, and Coppersmith-Winograd). I have found gauss-jordan implementations, but I have not been able ...
1
vote
1answer
596 views
Passing focus from parent to children in Linear Layout
I have a nested series of linear layouts in my xml code. I want the first child of the parent (also a linear layout) to take focus. It does this if I set focusable to true. I would also like pass the ...
1
vote
2answers
131 views
Linear Coding question
I am using Java to try to implement a simple linear code, expressed as F=SA where S is a matrix of random coefficients and A is a vector of original fragments (thus f = S multiply A).
I got the ...