In mathematics, a matrix (plural matrices) is a rectangular array of numbers, symbols, or expressions, arranged in rows and columns. The individual items in a matrix are called its elements or entries.
1
vote
1answer
19 views
How to creata a “plot matrix”
Hey dear R community !
I have a dataframe with stock values like this:
1 2 3 ... N
EADS Daimler BOEING
01.01.2012 5,2 ...
0
votes
0answers
32 views
Running a simulation with nested loops in R
I am trying to run a relatively simple simulation of an individual in a landscape over 100 time steps. In each time step I want to record whether an individual stayed in the same site or if it moved ...
3
votes
2answers
45 views
Numpy to check if a solution exists such that each row is < 0?
Consider the following code
X=np.matrix([[1,-1,1],[-1,0,1]])
print X.T
'''
[[ 1 -1]
[-1 0]
[ 1 1]]
'''
I want to check if a solution exists where the transpose has a <0 solution. For ...
1
vote
2answers
70 views
How to efficiently generate this matrix in python
I have already had a row vector a of dimension d which only contains elements 0 or 1.
I want generate a r by d matrix A, where A satisfies
for column j = 1,2 .... d
if a[j] = 1, then A[:,j] = 1. ...
0
votes
0answers
12 views
Take out the points of the matrix, following the shape of polygon
I'm currently working on mapping the shape onto a matrix, I have a polygon and now I wish to apply it onto the matrix of points (coordinates), and depending the shape of the polygon, I will be able to ...
1
vote
1answer
22 views
Get a value from a numpy matrix
If I have a numpy matrix:
>>> S
matrix([[ 0.66581073+0.00033919j],
[ 0.81568896-0.03291265j],
[ 0.99884785+0.00045446j]])
How do I get an element, without the matrix ...
1
vote
2answers
50 views
All pixels except one pixel in matlab [duplicate]
Say that we have a 3x3 matrix in matlab. If we type x(:), this will select all the elements in the matrix, right?
How can we select all the elecments except element x(2,2)? What should we type in ...
0
votes
3answers
77 views
Generic matrix: how to pass a type in a function argument
I created a generic matrix structure like this:
typedef struct mat_t {
/**
* \brief matrix structure
*/
unsigned int c, l;
void **matrice;
}* mat;
My problem is to learn how to allocate ...
0
votes
2answers
64 views
Need help working with Matrices in R
So write now I'm writing a function in R that looks at a set of vectors presented as a matrix, and two test vectors, and then checks each vector in the original set, and decides which of the two test ...
0
votes
1answer
19 views
How do I draw samples from multivariate gaussian distribution parameterized by precision in matlab
I am wondering how to draw samples in matlab, where I have precision matrix and mean as the input argument.
I know mvnrnd is a typical way to do so, but it requires the covariance matrix (i.e inverse ...
0
votes
0answers
4 views
How to define a MATRIX funcion in HP 50g?
I'm trying to define simple functions that operate with matrices, in HP 50g calculator.
Ex.:
DEFINE('X3(M)=3*M')
However, that doesn't work. It gives an error; "Bad Argument Type".
Is there a way ...
-1
votes
2answers
39 views
How I can combine variables as matrix in R Language
I have generated six standard normal variable using following code in R
for(i in 1:6){
assign(paste("x", i, sep = ""), rnorm(1000,0,1)))
}
when i enter x1, x2, ... x6 etc at command ...
0
votes
3answers
30 views
Why do I get an error when I am declaring a Matrix/Array as a global variable?
When I press Start in "Visual Studio 2011 Ultimate 12", where I am working, it says:
"InvalidOperationException was unhandled, an exception was caught by the debugger, and user settings indicate that ...
0
votes
1answer
31 views
function in a Matrix manipulation
I'm trying to set an function as a matrix element and then I want this function to be called when matrix-multiplication is done..
Pseudo Example :
f = lambda {|x| Math.log(x) }
m1 = Matrix[ [f,0], ...
1
vote
2answers
55 views
Treating a bidimensional text (Ruzzle solver)
I am trying to program a Ruzzle solver Java application for learning purpose.
I have a little problem in th ematter of "finding words" in a Ruzzle-type map.
Example of a Ruzzle map (it is composed of ...
2
votes
2answers
30 views
r use max on each element of a matrix
> x <- array(-10:10, dim=c(4,5))
> x
[,1] [,2] [,3] [,4] [,5]
[1,] -10 -6 -2 2 6
[2,] -9 -5 -1 3 7
[3,] -8 -4 0 4 8
[4,] -7 -3 1 5 9
...
0
votes
0answers
9 views
rotate and translating image from roll pitch
I have an image like artificial horizon on android and have input roll pitch from gyro sensors that connected by wifi module. My questions is how to animate my horizon image as roll and pitch input ...
0
votes
0answers
33 views
Calculation for View Matrix in C++ DirectX 9
I'm trying to create a first-person shooter camera for my DirectX game. But I'm struggling in trying to get my view matrix right. At the moment I have only got a triangle to display on the screen, but ...
0
votes
0answers
17 views
Oracle: Roles, Tables, Privileges as Matrix
In Oracle there is a view called role_tab_privs
which details table privileges granted to roles.
It has rows like this (not all columns displayed):
Table Role Privilege
table1 ...
2
votes
3answers
34 views
In R, using `unique()` with extra conditions to extract submatrices: easy solution without plyr
In R, let M be the matrix
[,1] [,2] [,3]
[1,] 1 2 3
[2,] 1 3 3
[3,] 2 4 5
[4,] 6 7 8
I would like to select the submatrix m
[,1] [,2] [,3]
[1,] 1 ...
1
vote
2answers
25 views
Cross section 2D data of symmetric len into Z matrix MATLAB - 3D plot from 2D cross section
I have a problem and maybe you will be able to help me. Like in the title i have cross section data of a symmetric lens - coordinates s=-100:1:100 and height y - and I would like to create 3D plot the ...
0
votes
1answer
27 views
In R, logical operators and formulae to extract rows from a matrix
In R, let M be the matrix
[,1] [,2] [,3]
[1,] 1 9 1
[2,] 2 12 5
[3,] 3 4 6
[4,] 6 2 4
I would like to extract a submatrix m from M applying the distinct ...
0
votes
1answer
33 views
Determining diagonals in a matrix
I have a square matrix, and , if I select two random elements in it, I am interested to determine two cases:
If the two elements are situated on a diagonal parallel with the main diagonal
If the two ...
0
votes
0answers
15 views
rotation and scaling and move using multi touch in android
i want to rotate and scale and move the image on multi touch event, it seems to be working, but it's not working perfectly. I really want to fix my wrong code up, so please help me. my code is there
...
2
votes
2answers
28 views
create multiple boxplot on same graph based R
Multiple Boxplot in R from a matrix, grouped by the values of a particular column.
eg.
M= matrix(c(1,2,1,3,2,3,1,4,2,5,3,5,2,6),ncol=2)
ie.
[,1] [,2]
[1,] 1 4
[2,] 2 2
[3,] 1 ...
0
votes
1answer
24 views
In R, Extract from a matrix all rows indexed by the components of a vector
In R, let M be the matrix:
[,1] [,2]
[1,] 1 9
[2,] 3 12
[3,] 6 4
[4,] 7 2
I would like to extract all rows with entries equal to the components of the vector
v <- ...
0
votes
1answer
39 views
How to find x number of closest neighbours matching criteria in MATLAB?
I have an m*n matrix with values of 0-9. Basically, what I want to do is be able to find all cells that have a 0 as their value and find the k closest neighbours that aren't 0.
My code right now is ...
0
votes
0answers
9 views
Java finding matrix determinant - JAMA - allows Matrix inversion but claims that determinant is 0
Anyone had this problem?
I am trying to find a determinant of a quite large matrix - 73x73.
When I run:
double det = m.det();
result is 0.0
but when I run:
Matrix inv = m.inverse();
There are ...
0
votes
1answer
35 views
convert a matrix of integers to a column factored matrix with integer values
I have a matrix , all the entries are integers. and the values in columns are discrete. Therefore I want to store them as factors. I have converted each column to factors. But the type of entries now ...
-2
votes
1answer
41 views
Input-Looping Matrix Dimensions Must Agree
I've got this error:
Error using - Matrix dimensions must agree.
Error in DistMatrix3 (line 23)
d=sqrt((I-L').^2+(J-M').^2+(K-N').^2);
Error in coba (line 20)
...
-1
votes
1answer
35 views
How to read the matrix values after “reshape” [closed]
Say for instance that I have the following vector:
x=[1 2 3 4];
Here, the vector is read as follows:
x1=1
x2=2
x3=3
x4=4
Is that correct?
Now, if I do the following:
y = reshape(x,2,2);
I ...
0
votes
1answer
32 views
Mapping values of a matrix to another matrix
I have two matrices with the following dimensions:
matrix_1 --> 143810x2
matrix_2 --> 394x365
Regarding matrix_1, it will eventually evaluate to a matrix of dimension 143810x1.
Since ...
-3
votes
0answers
31 views
Matlab How to convert arrays of structures into several numerical matrices? [closed]
I am new in matlab and I am not familiar with array of matrices. I have a number of matrices nx6:
<26x6 double>
<21x6 double>
..
Each matrix is of this type:
>> Matrix{1,1}
A ...
0
votes
0answers
36 views
simple OpenCl example kernels (host language independent)
I'm searching for some simple OpenCL code samples, especially FFT, matrix multiplication, diagonalization and convolution. I know that there is a lot of codes/tutorials and toolkits. However all what ...
1
vote
0answers
24 views
C++ library - Using Quadprog++ and Array.hh
I'm trying to use the Quadprog++ library (http://quadprog.sourceforge.net/) but there is no documentation about it. In particular I'm trying to do the exponential of a matrix with the function of ...
0
votes
2answers
42 views
3x3 Matrix Rotation in C++
Alright, first off, I know similar questions are all over the web, I have looked at more than I'd care to count, I've been trying to figure it out for almost 3 weeks now (not constantly, just on and ...
0
votes
1answer
49 views
Creating a 3D matrix with R?
I'm trying to build a 3D matrix by looping variables in a large data set (please see the 'head' of the data below). Specifically, I need to create a matrix with as many rows as the maximum number of ...
0
votes
1answer
44 views
improving Numpy dot performance by removing arrays copy
Given a matrix QT:
% ipython
Python 2.7.3
In [3]: QT.dtype
Out[3]: dtype('float64')
In [4]: QT.__class__
Out[4]: numpy.ndarray
In [5]: QT.flags
Out[5]:
C_CONTIGUOUS : True
F_CONTIGUOUS ...
0
votes
3answers
38 views
2D Array of letter number combination indexes
I am at a loss in creating a 2D matrix with a combination of letters and numbers as indexes.
Typically an array is accessed using array[0][1] or array[3][2]. How can I achieve looking up an array ...
0
votes
1answer
22 views
write in array format in fortran
I try to write an output file.dat with an nxn matrix format .
I write the code but the output is a column of value f.
Now the problem is: how can i change the output-format of the file to write?
...
0
votes
0answers
14 views
Autoscaling an image after using the Matrix.postRotate() method
I used the Matrix.postRotate() method to rotate my image but now it no longer autoscales to fit the parent LinearLayout. Here's the relevant code...
private ImageView rotateimage(ImageView dotimage) ...
1
vote
1answer
46 views
R Matrix process with conditional additions
I have to pre-process a big matrix. To make my example easier to understand I will use the following matrix:
Raw data
Where col = people and row = skills
In R my matrix is:
test <- ...
0
votes
0answers
12 views
Mapping real world(x,y,z) coordinates to cube panorama faces coordinates using EMGU OPEN CV in C#
I try to map coordinates from real world to cube faces. I have 3d coordinates from the real world measured with total station.
I manually enter the projection coordinates using mouse and simple GUI. ...
0
votes
0answers
41 views
How to sum over columns with some weight in a csr matrix in python
If I have a large csr_matrix A, I want to sum over its columns, simply
A.sum(axis=0)
does this for me, right? Are the corresponding axis values: 1->rows, 0->columns?
I stuck when I want to sum ...
0
votes
1answer
110 views
How to sum values among matrices of structures under certain conditions in Matlab?
I am new in matlab and I am not familiar with array of matrices. I have a number of matrices nx6:
<26x6 double>
<21x6 double>
<27x6 double>
<36x6 double>
<29x6 double>
...
2
votes
2answers
25 views
Assiging matrix value by coordinates in vector object
Let's we have a vector
b = [3 2 1];
Let's we also have matrix like this :
A = ones([10 10 10]);
So, now I want to use vector b as a source of coordinates to assign values to matrix A. In ...
0
votes
1answer
42 views
Read matrix from GUI object
I'm writing a program that performs Gauss elimination, and I want to create a GUI for this. For example, if the user wants to input a 2×2 matrix, I want 4 text boxes to appear in the GUI. My problem ...
1
vote
1answer
24 views
Cuda/PyCuda - Large matrix traversal and block/grid size
I am working on something that has highlighted the fact I don't have a firm grasp of how blocks and grids work in cuda. I have a 1000x10 matrix that I would like to traverse and fill in each element ...
2
votes
1answer
34 views
compare top half matrix with bottom half
If I have the following data:
mat1 <- matrix( c(0,2,3,1,0,1,1,1,1), nrow=3 )
rownames(mat1) <- LETTERS[1:3]
colnames(mat1) <- LETTERS[1:3]
mat1
# A B C
#A 0 1 1
#B 2 0 1
#C 3 1 1
...
1
vote
3answers
36 views
Matlab - How to mask a 3-D image using a binary image
I have an image with red, green, blue channel and a binary version of the image.
What I want to do is concatenate those 2 images so that the binary image works as the mask for the normal image.
I ...


