Questions related to matrix multiplication, especially implementation. Mathematical questions should consider the linear algebra tag.

learn more… | top users | synonyms

1
vote
0answers
17 views

Cuda matrix multiplication gives wrong answer

I've been working on trying to get matrix multiplication on the GPU to work by using CUDA programming, but I'm having trouble pinpointing my error. I feel the error has to be somewhere within my ...
2
votes
1answer
14 views

How can I replace the summing in numpy matrix multiplication with concatenation in a new dimension?

For each location in the result matrix, instead of storing the dot product of the corresponding row and column in the argument matrices, I would like like to store the element wise product, which will ...
0
votes
1answer
28 views

Matrix Multiplication by creating 2d topology using MPI

i am multiplying 2 matrices in MPI by creating 2d topology i am getting the error An error occurred in MPI_Type_create_struct on communicator MPI_COMM_WORLD MPI_ERR_TYPE: invalid datatype *** ...
2
votes
1answer
44 views

multiply array of matrices by a vector

I have an array of matrices that I want to multiply by a vector (so the first array in the matrix should be multiplied by the first value in the vector, etc.). import numpy as np # Three ...
0
votes
0answers
62 views

Bunch of cuComplex.h and cmath errors

I am trying to compile my code in VSC++ using arrayfire for porting the matrix multiplication to gpu. I am getting the following bunch of errors for all the source files. What's happening! I am pretty ...
0
votes
2answers
61 views

Perl fast matrix multiply

I have implemented the following statistical computation in perl http://en.wikipedia.org/wiki/Fisher_information. The results are correct. I know this because I have 100's of test cases that match ...
4
votes
2answers
107 views

How do I more efficiently multiply transpose matrices?

I keep beating myself over the head with this. I have an SSE-based algorithm for multiplying matrix A by matrix B. I need to also implement the operations for where A, B, or both are transposed. I did ...
1
vote
1answer
37 views

3 dimensional matrix multiplication in matlab

I have a normal map of size mxnx3, where each pixel has a normal vector {Nx, Ny, Nz}. I want to rotate each normal vector independently by a rotation matrix. Let R be the rotation matrix of size ...
-1
votes
0answers
10 views

Input Matrix through Richtextbox and convert to 2d Array in c#?

Basically I want to type in a matrix to a richtextbox with characters separated by spaces forming columns and lines indicating rows for example 1 2 2 1 2 2 . . . . . . . .converted to a 3X3 matrix ...
1
vote
2answers
48 views

Elementwise multiplication of a matrix by a vector

Suppose I have a matrix A=rand(2,14,24) and a vector x=10*ones(1,14) I want element wise multiplication of A and x, such that B(i,j,k)=A(i,j,k)*x(j) for all j=1,2,..14. I want to be able to do this ...
2
votes
1answer
28 views

Open CV Multiplying huge matrices segmentation fault

I am facing a problem while implementing matrix multiplication as a part of my project in OpenCV. The following is my code: cvInitMatHeader( mat, 12300, 10, CV_64FC1, matrix); cvInitMatHeader( matty, ...
0
votes
0answers
29 views

Matrix multiplication routine on different platforms [closed]

Generally, would implementing a matrix (of floats) multiplication routine on different platforms always produce the same result ? Why? or Why not. Let the implementation be the same; would the ...
0
votes
1answer
47 views

java matrix chain multiplication array index out of bound exception

Trying to do chain matrix multiplication but the code throws an out of bound exception at 2 places, please help me eliminate it. The exception occurs at 2 places Exception in thread "main" ...
0
votes
1answer
34 views

Vector.Multiply ignores offset values of matrix

My understanding of the WPF transformation classes is that the Matrix class represents a 3x3 row-major matrix of 2D homogenised coordinates where the final column is always (0,0,1). I understand that ...
-4
votes
1answer
55 views

How large is my Matrix? [closed]

I am working on a code which has Matrix Multiplication along with other complex mathematical functions like fft,lu,ifft,fftshift etc. What I want to know is when I change my input parameters how ...
3
votes
2answers
105 views

Open Source Library for complex mathematical problems like Matrix Mul, LU, FFT etc in OpenCL

The use of GPU in General Purpose is common now. And the very basic thing, the Matrix Multiplication is the first in the OpenCL tutorials. Instead of writing codes and kernel codes for specific gpu. ...
0
votes
1answer
47 views

3D Matrix Multiplication in CUDA

I am currently trying to implement a product of Matrices in CUDA : The first Matrix is a 3D matrix (N,M,Z) and the second one is a 2D Matrix (M, L ). I cannot see what is wrong in my code for this ...
-3
votes
0answers
44 views

Create a matrix using PHP [closed]

Hello i am having two arrays. $a = array(A,B,C,D); $b = array(2,3,1,2,4,3); i want to create a matrix as shown below. for calculation of matrix $b values signifies the below relation. AB = 2 AC = 3 ...
0
votes
1answer
40 views

Mpi_recv hangs while waiting for a message that has been sent from slave process

So I'm trying to write myself a matrix multiplication that uses MPI (OpenMPI implementation). The problem is,although sending parts of a matrix from master to slaves by MPI_Send/MPI_Recv works ...
0
votes
2answers
42 views

hyperthreading and turbo boost in matrix multiply - worse performance using hyper threading

I am tunning my GEMM code and comparing with Eigen and MKL. I have a system with four physical cores. Until now I have used the default number of threads from OpenMP (eight on my system). I assumed ...
0
votes
2answers
62 views

how to present a 2d array in an 1d array with a size of height or width

I have the problem that I want to do parallelization with Android Renderscript. For this I have to allocate my input data to renderscript and allocate them back. I want to do big matrix ...
2
votes
1answer
160 views

max FLOPS for matrix multiplication Intel/AMD CPU

My formula for estimating the maximum FLOPs/s of an Intel CPU is Max SP FLOPs/s = frequencey * 4 SSE(8AVX) * 2 (MAC) * number of cores (not HW threads) Max DP FLOPs/s = 0.5 * Max SP FLOPs/s By MAC ...
1
vote
4answers
99 views

How Do I Multiply Two 10x10 Arrays in C++?

I'm currently trying to write a program that uses a function that takes 3 different 10x10 arrays as parameters, and fills the 3rd array with the product of the first 2 arrays. I have scoured the web ...
0
votes
1answer
28 views

How expensive are matrix multiplications?

I've written a couple of methods in my Quad class to draw quads and also to rotate. Currently, the draw sprite method does just that - renders the quad to the screen. However, the rotation method, ...
3
votes
2answers
160 views

How can I calculate the running time of a pthread matrix multiplication program?

I have created a matrix multiplication program, one in serial, and one using pthreads. I need to compare their running times. My serial code takes about 16 seconds to calculate 1000x1000 matrix ...
1
vote
1answer
43 views

Matrix multiplication error: Segmentation fault (core dumped)

I have the following code, and I want to calculate the running time of several matrix multiplications, with different sizes. I started with matrix size of 100, and moved till 500, but when I try 1000, ...
0
votes
2answers
162 views

Ideal Global/Local Work Group Sizes (OpenCL)

I'm attempting to optimize an OpenCL matrix multiplication program for an NVIDIA GeForce 9800 GT graphics card. I'm multiplying two 512x512 matrices, but I'm not sure what global and local work group ...
-1
votes
2answers
97 views

Pandas force matrix multiplication

I would like to force matrix multiplication "orientation" using Python Pandas, both between DataFrames against DataFrames, Dataframes against Series and Series against Series. As an example, I tried ...
4
votes
1answer
115 views

Product of two Toeplitz matrices?

The O(n log n) algorithm for the product of a Toeplitz matrix and a vector of the correct length is well-known: put it in a circulant matrix, multiply it by the vector (and subsequent zeroes), and ...
-3
votes
4answers
66 views

Why do I always get an ArrayIndexOutOfBoundsException? [closed]

This code is taken from a common algorithms book. The book uses an array starting from 1 instead of 0 for m but starts from 0 for p. How do I solve it ?? These are the errors: Exception in thread ...
3
votes
0answers
198 views

loop tiling/blocking for large dense matrix multiplication

I was wondering if someone could show me how to use loop tiling/loop blocking for large dense matrix multiplication effectively. I am doing C = AB with 1000x1000 matrices. I have followed the ...
0
votes
2answers
104 views

Power Spectrum (Conjugate Matrix Multiplication) in Matlab : Getting complex values instead of real ones. What is wrong with my code?

Here's my code, so simple that I can't believe it doesn't work. pckint = imread('pckint.jpg'); F = fft2(pckint); Fcon = conj(F); S = F*Fcon; Now, as per the assignment directions, and my ...
4
votes
2answers
141 views

Fast rotation/transformation matrix multiplications

I am looking for the most efficient way to do matrix * matrix and matrix * vector operations for 3x3 rotation and 4x4 transformation matrices in C#. I currently store my matrices in multidimensional ...
1
vote
1answer
58 views

Multiplying matrices that are stored in an array in Python

This may seem like a silly question, but I am a bloody newby in Python (and in programming). I am running a physics simulation that involves many (~10 000) 2x2 matrices that I store in an array. I ...
0
votes
3answers
86 views

MATLAB: Multiplying elements of a cell array with another matrix to create a new cell array consisting of the products

I have a cell array A consisting of a number of (2x1) matrices. I have another matrix B (2x2) which I intend to multiply with each element of the cell A. In other words, every matrix within the array ...
1
vote
4answers
47 views

matrix multiplication with a constant

I Want to multiply the given 1x1x3 matrix with a constant value. a= [[[1, 2, 3]]] expected result is a*3 = [[[3,6,9]]] please help me to solve this
0
votes
0answers
240 views

Java matrix operations, parallel colt matrix - matrix multiplication

I was using Jama for matrix operation in java but since they don't have sparse matrix then I start to use Parallel Cold Library (PColt) . It is a multithreaded version of Colt. I tried to multiply ...
2
votes
1answer
115 views

using matrices algebra to manipulate strings: is it feasible?

I'm trying to use matrix algebra with the purpose of manipulating strings. This means being able to multiple matrix-like structures using concatenation and pasting of string or of arrays of strings. ...
0
votes
1answer
43 views

Calculating norm of columns as vectors in a matrix

I am looking for the best way of calculating the norm of columns as vectors in a matrix. My code right now is like this but I am sure it can be made better(with maybe numpy?): import numpy as np def ...
0
votes
0answers
132 views

OpenCV Mat per-element operation: vector-matrix multiplication

I is an mxn matrix and each element of I is a 1x3 vector (I is a 3-channel Mat image actually). M is a 3x3 matrix. J is an matrix having the same dimension as I and is computed as follows: each ...
0
votes
0answers
36 views

Need Matrix multiplication assistance

So I have these three complete functions that return the desired row of a matrix, column of a matrix, and dot product of the row and column, and I need to somehow mesh them together in a fourth ...
0
votes
0answers
20 views

Matrix Multiplication Inquiry

Just wondering if there's a way to multiply a matrix in this manner, Using four different functions: -a function row(A, i) that takes a matrix A and an index i and returns a list with the ...
1
vote
1answer
35 views

How to duplicate all inner columns of a matrix and sum pairs of columns in Matlab

Suppose I have a matrix A 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 How do I duplicate the inner ...
2
votes
1answer
53 views

Should I implement matrix transformations over changing object coordinates?

I have a set of objects that can be scaled and translated. Suppose the user selects an object and drag to some position. I was thinking about implementing this in two different ways: either changing ...
0
votes
1answer
76 views

CUDA Matrix Multiplication Locks Up and Display Matrix of Zeros

I'm attempting to write a simple matrix multplication program that continually adds the product of two matrices to a third result matrix (I'm essentially giving the GPU a workout while I measure power ...
1
vote
1answer
89 views

matrix operations with gigantic matrices in python [duplicate]

Does anybody know how to work with gigantic matrices in python? I have to work with adjacency matrices of shape (10^6,10^6) and perform operations including addition, scaling and dot product. Using ...
1
vote
0answers
119 views

Why does my CUDA program complied by nvcc with -code=sm_20 slower than with -code=sm_12 on Tesla C2050 GPU?

I'm confused by my CUDA Random Linear Network Coding (actually a matrix multiplication in GaloisField(2^8)) program as follow. There isn't any float point value in my program. typedef unsigned ...
0
votes
2answers
125 views

Vectorized way of calculating row-wise dot product two matrices with Scipy

I want to calculate the row-wise dot product of two matrices of the same dimension as fastest as possible. This is the way I am doing it: import numpy as np a=np.array([[1,2,3],[3,4,5]]) ...
2
votes
1answer
87 views

Shared Data in PThread Programming

There's something I'm still not very sure about in PThread programming. And I'll appreciate if someone can tell me an absolute answer. My previous question is here: How do I assign array variable in ...
0
votes
1answer
191 views

Error using .* Matrix dimensions must agree [closed]

I am trying to get matrix of width 17 out from an audio file. I get Error using .* Matrix dimensions must agree. What does it mean and How I am suppose to fix it? Error is in windowed_frame = ...

1 2 3 4 5 8