Linear algebra is a field in mathematics dealing with arithmetic operations over vectors and matrices. Prominent existing libraries for performing such operations are BLAS and LAPACK. There are also dedicated software for vectorizing operations on vectors and matrices. Examples of such software are ...
0
votes
0answers
10 views
complex linear algebra on android
What is a good library for linear algebra over complex numbers that will work in Android? Performance would be nice, but for now, it just needs to work. JAMA has been suggested in the past, but I read ...
-1
votes
2answers
31 views
Linear Array Output Issue?
This is one of my first java programs, which includes a GUI and an linear array (I hope!)
I know this isn't suppose to be a 'help' website but more of a place to collaborate
ideas, but I've been ...
-2
votes
0answers
19 views
solving linear occurrences - general solution confusion [closed]
I've been trying to get my head around this for days.
I understand what is going on with the calculation of a linear recurrence and I also understand how the characteristic is obtained.
What is ...
-1
votes
0answers
21 views
How can I calculate feature weights from the libsvm linear kernel model file? [closed]
i am new to libsvm but managed to get a libsvm model from my training instances using the linear kernel. i want to calculate the weights for my features but have not been able to find out how to do ...
0
votes
0answers
6 views
Figuring out if data is linearly separable
So I've been given a bunch of 3D data points of two types A and B in list format and the question I am trying to solve is asking me to look at the data points and determine if I think they are ...
-3
votes
1answer
18 views
Could somebody explian conceptually how we got 0.5 and how do we implement same in code [closed]
Complete Question: For this question, continue to assume that we are using the training set given above. Recall our definition of the cost function was J(θ0,θ1)=1/2m∑mi=1(hθ(x(i))−y(i))2. What is ...
-3
votes
0answers
24 views
Linear Regression with one variable [closed]
Through 4 will use the following training set of a small sample of different students' performances. Here each row is one training example. Recall that in linear regression, our hypothesis is ...
0
votes
0answers
30 views
B-Splines in R - Interpreting significance tests
I'm fitting a cubic regression spline to some data using the bs()function in the splinespackage. To do this, I use the lmfunction like so:
l <- 3
knots = c(0.5, 1, 1.5, 2)
fit <- lm(y ~ bs(x, ...
-3
votes
1answer
54 views
Best Product Price Combination PHP Code [closed]
Please help!, I want a function that will generate the best price combination
that can fit/or nearest to the total price limit. these are the following variables
$limit = 475.60;
$product_prices = ...
1
vote
0answers
29 views
Can someone expain me the BiCGSTAB method
I have to implement BiCGSTAB methos in C++ programming interface. I tried understanding it on various blogs and page but couln't get the satisfaction. I also tried reading code provided by some of ...
1
vote
0answers
35 views
How to reformat non-linear data to linear data in python?
Let me elaborate:
I have a nonlinear time axis, say [2.0,5.8,8.18,16.0,32.1] (could be anything though)
I have a waveform recorded at the above times, say [1,1,1,1,1,etc]
I need to transfer ...
-2
votes
1answer
46 views
Linear programming model
I have the following taks.
Optimal portfolio problem
A finacial adviser is supposed to advise a client an adequate structure of investments. The client is a retired teacher having a stable views on ...
0
votes
2answers
74 views
Relative layout within Linear layout is scrollview possible?
I have a layout for entering a country into a database in my app. I would like my layout to be scrollable because on some devices the keyboard can end up blocking text fields. I know that I can use ...
1
vote
1answer
67 views
Binary and Linear search
This program is suppose to detect if an integer is found or not and how long it took to find. The first one is a linear search and the second is a binary search. The problems I'm having is this. The ...
0
votes
1answer
44 views
svds not working for some matrices?
Here is my testing function:
function diff = svdtester()
y = rand(500,20);
[U,S,V] = svd(y);
%{
y = sprand(500,20,.1);
...
0
votes
0answers
80 views
RANSAC linear regression in 2D (robust line fit)
This file includes C++ code for RANSAC Linear regression with a unit test that uses OpenCV. A typical use of a line fit is
float x[N], float y[N];
bool inliers[N];
float RMSE = RANSAC_line(x, y, ...
2
votes
1answer
92 views
Velocity at an angle
I'm trying to find the velocity at an angle.
To do this I'm trying to use a triangle, but I'm running into road blocks.
This is the code that moves the object
Velocity = new ...
3
votes
1answer
79 views
Extracting t-statistic for coefficient of interst from “mlm” object in R
I've used lm() to fit multiple regression models, for multiple (~1 million) response variables in R. Eg.
allModels <- lm(t(responseVariablesMatrix)~modelMatrix)
This returns an object of class ...
0
votes
1answer
71 views
gaussian elimination method and functional programming paradigm
Is it possible to write gaussian elimination method of systems linear equations in functional programming paradigm, that is a call to the function recursively ?
For example in ML or Scheme ?
0
votes
0answers
45 views
Linear regression with coefficients with different time and group related properties
I have already asked a similar question to this one and received quite a helpful answer, thanks a lot for that!
however, the setting has slightly changed and I now need to estimate a regression which ...
0
votes
2answers
74 views
How can I calculate predictor coefficients in linear prediction model in R?
I'm quite new to R and I have the following problem:
I have a time series / signal and I want to build linear prediction model. It seems something like Matlab lpc will be great but I can't find ...
-1
votes
1answer
75 views
Four buttons menu using LinearLayout
I`m trying to create a menu that will hold four ImageButtons next to each other and will be relative in size in order to support different screens resolutions.
Below the menu I need an additional ...
1
vote
4answers
76 views
How to arrive at the unit matrix from numpy.dot(A, A_inv)
I prepare a matrix of random numbers, calculate its inverse and matrix multiply it with the original matrix. This, in theory, gives the unit matrix. How can I let numpy do that for me?
import numpy
...
1
vote
2answers
37 views
performance of symbolicc++
Anyone has experience with the SymbolicC++ ? I'm trying to solve some linear problem with this library, but the performance seems not acceptable, here's my test
#pragma warning(disable: 4800 4801 ...
0
votes
1answer
30 views
Turning -webkit- or -moz- to -o- and -ms-
Is there any website witch transforms vendor specific form -webkit- or -moz- to -o- and -ms- ?
This is the code:
background-image: -webkit-gradient(linear,0% 0%,0% 70%,from(#6a6a6a),to(#222));
...
0
votes
1answer
330 views
d3 linechart string domain x-axis
I'm relatively new to D3, and I can't figure out why something isn't working..
I want to draw a line-chart with d3, and this works fine, but I have problems with the axes.
With the following code it ...
0
votes
2answers
168 views
android ScrollView not working with linearlayout
The ScrollView is not working. I tried different combinations and no luck. Can someone point me out where am going wrong?
<?xml version="1.0" encoding="utf-8"?>
<ScrollView ...
1
vote
1answer
68 views
How can I make my RelativeLayout appear next to my LinearLayout?
I'm trying to achieve the following:
I'm trying to display the LinearLayout next to the RelativLayout.
I already tried to wrap the RelativeLayout into a LinearLayout, but that didn't make any ...
0
votes
1answer
50 views
LAPACK Solve system (Rectangular Full Packed (RFP) format)
I'm using RFP format for matrix storage and try to solve the system of equations. But the results are wrong. =( Could someone please help.
I get
b = { 5.5, 10, 8.5}
But should be
b = { 2.875, 4.75, ...
0
votes
1answer
79 views
Phone can't find sensor for Sensor.TYPE_LINEAR_ACCELERATION
I'm trying to use the linear acceleration fusion sensor on my android app. However, it cannot find the sensor for Sensor.TYPE_LINEAR_ACCELERATION.
I perform these calls:
mSensorManager = ...
-1
votes
1answer
78 views
Fastest way to find if element exists in an unsorted array?
Is the fastest algorithm for searching an unsorted array for an element linear search? I mean I guess a combination of merge sort + binary search would be slower. Are there any other options? (in ...
0
votes
1answer
65 views
Traversing a level-oriented structure
I have a linear data structure where every node has a level. The parent node has a level of 1, a node that is child of the parent has a level 2, a node that is child of child has node of 3, another ...
0
votes
0answers
12 views
Photo capture and onclicklistener
The below code is supposed to define a linear layout expandable panel that has 2 buttons, take photos and view photos. The photos are supposed to be inline with the android app (they get stored in a ...
0
votes
0answers
43 views
Solving linear equations with substitute
this is my first question in this site. :-)
I didn't find the answer anywhere, maybe because I don't "know", what to look for. Tried some stuff with sym() and subs() but nothing.
My problem: I've ...
1
vote
1answer
78 views
ImageView Array issues
im trying to fill an Array with ImageViews
UPDATE 16:32:
runOnUiThread(new Runnable() {
public void run() {
try{
...
0
votes
0answers
32 views
Need help plotting and running linear regression on millions of data points
I have a .txt file with three columns and about 10 million rows. I am trying to plot the second versus the third column, as well as run a linear regression on the third column versus the second ...
0
votes
2answers
126 views
permutations with repetition of length different from input vector in Octave
How can I solve the problem of showing all possible combinations of vector
x ="abcdefghijklmnopqrstuvwxyz"
in which I would multiply it by itself.
I want a solution like this
...
1
vote
5answers
134 views
Java - what is returned when two keys map to same value?
In Java, I understand if two keys maps to one value , linear chaining occurs due to collision.
For Example:
 Map myMap= new HashMap(); //Lets says both of them get mapped to same bucket-A and
...
1
vote
0answers
58 views
least square percentage regression
Is there a package in R which implements least square percentage regression. A paper on this is found on this link:
https://uhra.herts.ac.uk/dspace/bitstream/2299/965/1/S64.pdf
Any help or direction ...
0
votes
1answer
38 views
Test reports always consist of same linear graph in Grinder Analyzer report
I use Grinder 3.11. I installed the Grinder Alnalyser "GrinderAnalyzer.V2.b19" to view the final report of the test run. I ran the following test for 20 iterations:
from net.grinder.script.Grinder ...
0
votes
1answer
155 views
R- Linear regression - X intercept
I am doing a project in my research using R.
In the project, I have a scatter plot of data. Then on the scatter plot, a line is fit (using abline) and thereafter I recall the details of the line ...
0
votes
1answer
725 views
Linear Probing on Java HashTable implementation
So I have a HashTable implementation here that I wrote using only Arrays and had a little bit of help with the code. Unfortunately, I don't quite understand one of the lines someone added while ...
0
votes
2answers
63 views
Maple: Accessing the solutions of solve when solving for multiple functions
When I want to solve a set of linear equations for two functions, e.g.
solutions := solve({f(x)=x,g(x)=x},{f(x),g(x)});
what exactly can I do to work with the solutions as functions themselves in ...
2
votes
1answer
123 views
Solving simple linear algebra equations using symbolic objects with MATLAB
This is probably very simple but I'm having trouble setting up matrices to solve two linear equations using symbolic objects.
The equations are on the form:
(1) a11*x1 + a12*x2 + b1 = 0
(2) a21*x1 + ...
-2
votes
2answers
55 views
php, n range of number-price combinations between two given combinations [closed]
I would need some more mathematical help as I'm creating a data array for a graph.
I'm programming in PHP.
I have value pairs which correspond to amount and price. I have the first and the last, but ...
0
votes
0answers
148 views
MATLAB - robust regression iteration limit reached?
I have a linear model that I am using robust regression to estimate parameters for, but I get the following message (in orange) in MATLAB:
Warning: Iteration limit reached.
> In ...
3
votes
1answer
255 views
Efficiently solving linear system with Laplacian + diagonal matrix
Dear fellow Matlab users,
In my implementation of an image processing algorithm, I have to solve a large linear system of the form A*x=b, where:
matrix A=L+D is the sum of a Laplacian matrix L and ...
2
votes
1answer
293 views
Regression on subset of data set
I'd like to do the following and need some help:
Calculate slope and intercept for "Height" over "Age" [lm(Height~Age)] separately for
(A) each individual
(B) gender
and create a table ...
1
vote
3answers
350 views
linear searching an array of class objects
I have a linear search algorithm set up to search through an array of class objects it works but the output does not match, when i search for a particluar name in the array the 1st and third values ...
1
vote
3answers
153 views
What kernel to select when using LIBSVM
I am current performing classification of two labels using libsvm in matlab. I have extracted the features and there are about 69 of them. I just want to know if it is alright to use linear kernel for ...


