The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
30 views

R: generalized impulse decomposition vs. Cholesky decomposition for var models

I am using R package "vars". For example: library(vars) data("Canada") mymodel <- VAR(Canada, p = 2, type = "const") I am interested in running impulse response analysis, e.g.: vec.irf <- ...
0
votes
1answer
19 views

Non-nested double seasonality using dshw() in R

I'm trying to use dshw() to deal with double seasonality -- in my case, daily data with one-week (7-day) and one-year (365-day) seasonality. However, I get the following error when I run my code: ...
1
vote
1answer
69 views

Generating Positive definite matrix of dimensions 8x8

I am trying to generate a positive definite matrix (A'*A) of dimensions 8x8. where A is 1x8. I tried it for many randomly generated matrix A but not able to generate it. octave-3.6.1.exe:166> A= ...
1
vote
2answers
41 views

Finding slope before and after breakpoint

I'm currently using the bfast package in R to decompose a time series. I was curious if it was possible to extract the slope of the trend segment before and after a breakpoint (until an end or another ...
1
vote
1answer
38 views

Decomposition rule relational databases

I got a relational database of type R={A,B,C,D,E,F} with functional dependencies like F = {{AB-->C}; {A-->D}; {D-->AE}; {E-->F}} However, with help of inference rules I have come up with the ...
0
votes
1answer
80 views

Parsing SVG - transformation matrix decomposition

I need to parse SVG (just the simples things) and only thing left to do is to properly extract position and angle from the matrix transformation. I know this question has been asked many times and I ...
0
votes
0answers
36 views

Change MPI topology on the fly

I'm currently working with a program that is written in C with MPI parallelization. The computation grid is divided up using common domain decomposition techniques. The processes layout is as follows ...
0
votes
2answers
51 views

PHP String Decomposition

What is the best way to decompose the following string: $str = '/input-180x129.png' Into the following: $array = array( 'name' => 'input', 'width' => 180, 'height' => 129, ...
0
votes
1answer
226 views

LU decomposition for tridiagonal matrices (Java)

I'm creating a class to represent tridiagonal matrices. These are square matrices which have a set of non-zero values on the diagonal, and non-zero values on the upper and lower diagonals and then ...
-2
votes
1answer
70 views

2-dimensional Array decomposition in Python

I would appreciate your help with a translation to Python 3 that decomposes an input array of any size into smaller square arrays of length 4. I have tried chunks and the array functions in numpy but ...
0
votes
0answers
134 views

Synthesis algorithm, identify whether BCNF and find candidate keys

I have some problems regarding synthesis algorithms and finding candidate keys as I feel that the slides provided on my course merely gives examples of how they are inferred, with no explanation. ...
0
votes
0answers
59 views

trapezoidal decomposition

I am searching for an C++ algorithm for trapezoidal decomposition of a polygon with holes. Anyone know a good library for it? At the moment I only found a lot of for Triangulation decomposition. My ...
0
votes
2answers
32 views

Enhancing testability by decomposing batch tasks

I can't seem to find much information on this so I thought I'd bring it up here. One of the issues I often find myself running into is unit testing the creation of a single object while processing a ...
2
votes
1answer
954 views

LU decomposition with partial pivoting Matlab

I am trying to implement my own LU decomposition with partial pivoting. My code is below and apparently is working fine, but for some matrices it gives different results when comparing with the ...
1
vote
1answer
122 views

Minimum Weight Triangulation Taking Forever

so I've been working on a program in Python that finds the minimum weight triangulation of a convex polygon. This means that it finds the weight(The sum of all the triangle perimeters), as well as the ...
0
votes
1answer
450 views

Minimum Weight Triangulation Dynamic Programming Algorithm

So, I'm trying to understand the dynamic programming algorithm for finding the minimum weighted triangulation decomposition of a convex polygon. For those of you that don't know, triangulation is ...
0
votes
0answers
511 views

Decomposing a relation into BCNF

I'm having trouble establishing when a relation is in Boyce-Codd Normal Form and how to decompose it info BCNF form if it is not. Given this example: R(A, C, B, D, E) with functional dependencies: A ...
0
votes
0answers
59 views

Incorrect Factor when using Cholmod for Cholesky decomp

i've been trying to use Cholmod to calculate the Cholesky decomposition of some matrices in my code. After running round in circles, I finally realised that the factor isn't correct. If i hand it a ...
0
votes
0answers
34 views

Query on a tree

I'm doing a research on tree decomposition, and I thought I could use Heavy-Light Decomposition for the following problem: Given a tree of N nodes, and Q queries. (1 <= N, Q <= 100,000) Each ...
0
votes
0answers
85 views

Finding lower triangular matrix of an indefinite matrix

So I have the system M = R*S = R*Q*(Q^-1)*S and I have R and S currently. I impose some constraints on R in the form of (r^T)Q(Q^T)*r = 1 where r and r^T are rows of R and their transposes. This ...
4
votes
4answers
238 views

Generating all distinct partitions of a number

I am trying to write a C code to generate all possible partitions (into 2 or more parts) with distinct elements of a given number. The sum of all the numbers of a given partition should be equal to ...
1
vote
2answers
66 views

What are standard non-uniform spatial domain decomposition methods in parallel programming?

Motivating example: I am trying to implement a land-only infection simulation in parallel based on the UK map. I sample points uniformly spread over the land area and determine its infection status ...
0
votes
1answer
46 views

best method of turning millions of x,y,z positions of particles into visualisation

I'm interested in different algorithms people use to visualise millions of particles in a box. I know you can use Cloud-In-Cell, adaptive mesh, Kernel smoothing, nearest grid point methods etc to ...
0
votes
1answer
197 views

How to accurately decompose positive semidefinite matrix and use the lower triangular part in linear equations

I have n arbitrary p x 1 vectors x_i, and p x k matrices A_i, and n p x p positive semidefinite matrices S_i, where some (often most) of the *S_i*'s are same (for example only two different S ...
2
votes
2answers
96 views

location of pointers in Objective C instances

I am designing automatically persistent objects, and for that I need (a) to locate members which are pointers, (b) to find their locations. The compiler has this information, and I expected that the ...
0
votes
2answers
197 views

[a b]=cholcov function returns a=[] and b=NaN for a symmetric positive definite matrix

I have this matrix: S= 6.84370358358718e-006 -7.45833473076585e-007 -7.45833473076565e-007 7.11723106043725e-006 It is symmetric: S-S'= 0 -2.00111533788828e-020 ...
0
votes
1answer
404 views

Find candidate keys by using functional dependencies

I have a relation looks like: R = (A,B,C,D,E) and functional dependencies: FD = {A -> B, AD -> C, BC -> E} In this case, I found one candidate key which is {AD}. But I guess there are ...
1
vote
1answer
87 views

Patterns for database functional decomposition?

we have a following problem. Our enterprise application has a database in MySQL, and it seems like it's structure becomes too complex - where are more than 100 tables (it has been developing for 7 ...
1
vote
0answers
187 views

Can we say a dependency preserving decomposition of a relation is lossless decomposition..?

I want to ask if a decomposition preserves dependency then will it always be a loss less decomposition...? Suppose I have a relation R and I have decomposed this table in two tables R1 and R2 so that ...
5
votes
1answer
347 views

Convert Unicode decomposition when transferring files to web server

I am doing website development on OS X, and fairly often I find myself in situations where I move some part of a live website (running Linux/LAMP) to a development server running on my own machine. ...
1
vote
1answer
63 views

Test rules for algorithms implementation, what are they?

I wonder, how could I test my implementation of any given algorithm? What are the different options for the test approach? Is algorithm decomposing on determinate / non-determinate final state ...
0
votes
1answer
247 views

Q job unsuccessful mahout ssvd

I'm trying to run ssvd on some tfidf-vectors in mahout. When I run it in Java code as follows (with mahout 0.6 jars), it works fine: public static void main(String[] args){ ...
0
votes
1answer
79 views

Adding a minimal key to a BCNF decomposition

If I will add a minimal key to a given BCNF decomposition can it be no more a BCNF decomposition? Formally, say I have F (group of functional dependencies), schema R and it's BCNF decomposition ...
2
votes
1answer
308 views

QR decomposition in RcppArmadillo

Really confused why the QR output using RcppArmadillo is different than QR output from R; Armadillo documentation doesnt give a clear answer either. Essentially when I give R a matrix Y that is n * q ...
2
votes
1answer
171 views

Leftover functional dependencies after Boyce Codd decomposition?

This decomposition example was given in class, however the solution is confusing as it seems to leave some FD's unaddressed. Please confirm 3) below is in BCNF, or cannot be put into BCNF? Let R be a ...
0
votes
1answer
230 views

LU decomposition using ejml

I'm trying to use ejml library to make LU decomposition of a matrix. All goes well for the calculation of the SVD decomposition, for LU decomposition I don't know to use ejml library. I would like ...
1
vote
1answer
144 views

Partition a positive definite square matrix into two indentical matrix

simply i want to partition a n*n positive definite matrix into an identical n*r matrix B where r is arbitrary, in the other word: B*B^T=A (n*r)*(n*r)^T=(n*n) Edit: i think it was my fault ...
0
votes
1answer
585 views

Time series and stl in R: Error only univariate series are allowed

I am doing analysis on hourly precipitation on a file that is disorganized. However, I managed to clean it up and store it in a dataframe (called CA1) which takes the form as followed: Station_ID ...
0
votes
1answer
119 views

What are database schema decompositions and why do we need them?

What is database schema decomposition? Why do we need decompositions?
0
votes
1answer
351 views

Multiresolutional wavelet decomposition code

I am not an advanced mathematical, so I understand only the basics of wavelet decomposition. I found JWave, which is a Java implementation of wavelet processing. The author tells me it can by its ...
1
vote
3answers
151 views

Is it bad style to create overly simple functions? [closed]

I'm just wondering - is it bad programming style to create functions (decomposition) for relatively simple task? For example, in PHP I find it annoying to have the '$_' and then capital letters for ...
-1
votes
1answer
130 views

Please suggest best practices for decomposing a user story in TDD way [closed]

Please suggest best practices for decomposing a user story in TDD way. Best practices and tips for decomposing a given user story in short time by following TDD approch. If you could explain with ...
1
vote
1answer
268 views

How to factorize a matrix(m x n) into two factors (m x r, r x n) in Matlab?

Hi I want to start with a mxn matrix A and factorise it into two matrices mxr and rxn. r can be greater than dimensions of matrix A. nnmf allows only for r< min(size(A)) Is there a way with the ...
2
votes
2answers
144 views

How to decompose this report class?

I have a class on the verge of becoming (correct me if I use this term incorrectly) monolithic. It stems from a single function which passes a model around to a slew of other functions that collect ...
2
votes
1answer
159 views

Can anyone explain the anomalous behavior of LU decomposition in Revol R?

A simple matrix benchmark test has indicated that Revolution Analytics R 2.13.2's LU decomposition is nearly 5 times slower than matrix multiplication. Theory and many years of practice show that LU ...
1
vote
1answer
2k views

Svg matrix decomposition

In svg we have method element.getCTM() which returns a SVGMatrix as: [a c e][b d f][0 0 1] I want to calculate sx , sy and angle of rotation from this matrix.
2
votes
2answers
430 views

Tuples and unpacking assignment support in C#?

In Python I can write def myMethod(): #some work to find the row and col return (row, col) row, col = myMethod() mylist[row][col] # do work on this element But in C# I find myself writing ...
2
votes
0answers
370 views

How to decompose table with reference to Heath's Theorem? [Homework]

I have a general understanding of Heath Theorem but I'm having trouble getting my head around this question: Use the functional dependencies to carry out a non-loss decomposition in line with Heath’s ...
0
votes
2answers
758 views

Sparse Matrix implemantation and operations in java

I have to implement sparse matrix and do some decompositions like Cholesky Decomposition, LU Decomposition, QR Decomposition on it. Actually I found a library called JAMA which is capable of doing ...
2
votes
2answers
373 views

PostgreSQL query decomposition

I fail to decompose simple SQL queries. I use PostgreSQL but my question is also related to other RDBMS. Consider the following example. We have table orders and we want to find first order after ...

1 2