0
votes
0answers
58 views

Read Matrix row one by one and make the output

I have a question, how to read matrix rows one by one? I already using command : rows = Table[assembly[[a]], {a, 16}] Table[Position[rows, bar][[All, 2]], {bar, 150}] MatrixForm[Position[rows, 49]] ...
0
votes
1answer
73 views

make a matrix with permutations of Range of numbers in Mathematica 9

I start learning Mathematica 9. I need to make a nx4 matrix "m" with permutations of Range of numbers, where first column is matrix "A" and second, third, fourth columns are matrix "B". Moreover, I ...
0
votes
1answer
102 views

How can one select components based on some supposed sizes in matlab

do Matlab has alternative for SelectComponents function in mathematica? how could this wolfram mathematica code be converted to its matlab equivalent. (* Connected component selection based on some ...
0
votes
2answers
40 views

listing entry position of matric satisfying certain condition

I have a column vector of polynomials in Mathematica and I have divided each of the entries of the vector by another polynomial. Some of the entries are now polynomials, and other are fractions of ...
1
vote
2answers
98 views

Importing data into Mathematica in the form of a matrix

I have a file which, when I import into Mathematica, looks like this: {{1,1,n1},{1,2,n2},{1,3,n3},{2,1,n4},{2,2,n5},{2,3,n6}} where n1...n6 are some numbers that I want to import as a matrix that ...
2
votes
2answers
59 views

How do I import a .dat file as a matrix in Mathematica?

I have a .dat file consisting of a string of numbers 1 to 9 that looks like this: 1 2 3 4 5 6 7 8 9 How do I import the data into mathematica so that it has the form ...
-1
votes
1answer
115 views

Mathematica: How to plot several lines of a matrix in the same graph vertically

I created an array named Theta with 100 lines and 400 columns. Each entry is a number. What I want to do is a graph that plots 0.01 vs every number in line 1 0.02 vs every number in line 2 ... 1 ...
2
votes
1answer
52 views

Modify an element of a matrix

Im trying this but doesn't seem to work: A = {{1,2},{3,4}} A[[1]][[2]] = 5; How could I do that? Currently I'm doing list = {3,5}; A[[2]] = list;
5
votes
2answers
129 views

Mathematica subtracting matrices with missing value

In Mathematica, I have a matrix 'a' with missing values and I have a matrix 'b' with same dimension as 'a'. I would like to calculate a-b but if the value is missing, which I denote by 'NA', I would ...
1
vote
2answers
434 views

Mathematica - printing a matrix, have fraction, want decimal to 6 places

Hi i am currently taking a Matrix, P, and doing this P500 = MatrixPower[P, 500]; and i print it back out with P500//MatrixForm but many of the numbers are these HUGE fractions, and i want ...
1
vote
1answer
316 views

Mathematica: conditionally deleting rows in a matrix

I have a 22x14 Matrix. Some of the entries in the matrix are '-1', signifying missing data. I'd like to be able to delete a Row whose jth entry is '-1' I'd like to be able to delete a Row whose ...
1
vote
2answers
349 views

Generating a strictly diagonally dominant matrix

Is there a way to generate a random n by n strictly diagonally dominant in Mathematica? I use the following code to generate a random square matrix: A = RandomReal[{-100, 100}, {1000, 1000}] EDIT: ...
3
votes
2answers
147 views

Why doesn't backsubstituting the result of Solve[] give the expected result?

I have this matrix a = {{2, -2, -4}, {-2, 5, -2}, {-4, -2, 2}} I then solved an equation with one missing entry. The equation is of the form Inverse[p].a.p == q where p is the 3x3 matrix with the ...
1
vote
1answer
404 views

Covariance Matrix of Disks Pixels in Mathematica

I would like to compute the Covariance Matrix of the image below. Pixel based. That is considering each Black Pixel of the Disks as vectors. While the units below are in centimeter, there are 32 ...
5
votes
3answers
461 views

Mathematica dynamic to plot matrix data

I am trying to dynamically plot data contained in a matrix with Mathematica 7. The data is contained in it like this, obtained via a chemical model. [year H He Li C ... C8H14+,Grain- ...
1
vote
2answers
225 views

Need Mathematica short code like these same from Maple

I have one problem with exportation results from Mathematica. Two matrices A and B have to be exported in special form. These two codes make a list of data exported from Maple. It is important that ...
2
votes
1answer
322 views

How to define determinant of a matrix as a function in mathematica?

Let A(t)=(f1(t), f2(t); f3(t), f4(t)) be a 2*2 matrix first of all how can I define the matrix A(t) as a function of t then I would like to define the determinant of A as a function, i.e. ...
7
votes
5answers
350 views

Easy way to populate this matrix?

I would like to populate an n * n (n being odd) matrix in the following way: _ _ _ 23 22 21 20 _ _ 24 10 9 8 37 _ 25 11 3 2 19 36 26 12 4 1 7 18 35 27 13 5 6 ...
6
votes
3answers
319 views

Transform a coordinate sytem into a Matrix in Mathematica

Ahead of a the programming question, I believe I need to give a little background of what I am doing to ease the understanding of my problem : I record eye-movements while displaying some patterns to ...
0
votes
2answers
236 views

Optimizing calculation with lists of matrices within a Picard Iteration

Currently I am working with some Mathematica code to do a Picard Iteration. The code itself works fine but I am trying to make it more efficient. I have had some success but am looking for ...
9
votes
2answers
528 views

What is the most efficient way to construct large block matrices in Mathematica?

Inspired by Mike Bantegui's question on constructing a matrix defined as a recurrence relation, I wonder if there is any general guidance that could be given on setting up large block matrices in the ...
5
votes
2answers
367 views

How to form submatrices with some non-consecutive rows and columns of a matrix

I have a 10 by 10 matrix. I want to form a sub-matrix from this main matrix, using all the rows and columns except the 1st, 2nd and 8th columns and rows. I know Part can be used to form the ...
7
votes
2answers
318 views

Assumptions in Mathematica's NullSpace Command for Symbolic Matrices

When executing Mathematica's NullSpace command on a symbolic matrix, Mathematica makes some assumptions about the variables and I would like to know what they are. For example, In[1]:= ...
4
votes
2answers
429 views

Using Mathematica to Automatically Reveal Matrix Structure

I spend a lot of time looking at larger matrices (10x10, 20x20, etc) which usually have some structure, but it is difficult to quickly determine the structure of them as they get larger. Ideally, I'd ...
4
votes
2answers
500 views

Efficient way to pick/delete a list of rows/columns in a matrix in Mathematica

This question is in a way a continuation of the question I asked here:Simple way to delete a matrix colum in Mathematica to which @belisarius and @Daniel provided very helpful answers. What I am ...
6
votes
1answer
946 views

Simple way to delete a matrix column in Mathematica

I am trying to delete both a matrix in mathematica. An inelegant way of doing it is as I do below, i.e specifying it in a new matrix as S = Table[ Ss[[If[i < t, i, i + 1]]][[If[j < t, j, ...
0
votes
2answers
673 views

matlab matrices and fold list

i have two problems in mathematica and want to do them in matlab: measure := RandomReal[] - 0.5 m = 10000; data = Table[measure, {m}]; fig1 = ListPlot[data, PlotStyle -> {PointSize[0.015]}] ...
1
vote
3answers
1k views

Factoring matrices into elementary matrices

Is there a package in MATLAB, Maple or Mathematica which does this?
3
votes
3answers
1k views

Octave: Multiple submatrices from a matrix

I have a large matrix from which I would like to gather a collection of submatrices. If my matrix is NxN and the submatrix size is MxM, I want to collect I=(N - M + 1)^2 submatrices. In other words I ...
11
votes
4answers
2k views

How to prepend a column to a matrix?

Ok, imagine I have this Matrix: {{1,2},{2,3}}, and I'd rather have {{4,1,2},{5,2,3}}. That is, I prepended a column to the matrix. Is there an easy way to do it? My best proposal is this: ...