Community Profile

photo

Andrew


Active since 2011

Statistics

  • Thankful Level 3
  • First Answer

View badges

Content Feed

View by

Question


Reading in a text file containing "end-of-record" ("end-of-row") markers
Hi, I have a text file (test.txt) that is of the following form: 1.1 1.2 1.3 X 2.1 2.2 2.3 X 3.1 3.2 3.3 where X d...

12 years ago | 1 answer | 0

1

answer

Answered
I need a guideline to learn MATLAB faster
Try the video tutorials at <http://www.youtube.com/user/RobertTalbertPhD>

12 years ago | 0

Question


Advice on reading an unformatted Fortran binary file into Matlab
Hi, I have used Fortran 90 to generate a huge array of reals (the dimensions are 5001 by 2287), and I have written this array...

12 years ago | 1 answer | 0

1

answer

Question


Squeezing a two-dimensional array into a one-dimensional array without using a FOR loop
Hi, I would like to be able to squeeze a two-dimensional array into a one-dimensional array. Basically, I would like to be a...

12 years ago | 2 answers | 0

2

answers

Question


Elegant way to replicate a vector, placing it into each cell in a cell array
Hi, I would like to be able to create a cell array, with each cell containing the same 1 by 3 vector that I specify. For exa...

13 years ago | 3 answers | 0

3

answers

Question


Converting a numeric array to a cell array containing vectors
Hi, Is there a way to convert a numeric array to a cell array of vectors? For example, suppose I have the following: A=...

13 years ago | 1 answer | 0

1

answer

Question


Subtracting two cell arrays, yielding a third cell array
Hi, I have two cell array of vectors; each cell in both cell arrays contains a 1 by 3 vector. For example, A={[20 20 ...

13 years ago | 1 answer | 0

1

answer

Question


Connecting points in 3D using plot3
Hi, Suppose I have three points: A=[1 1 1]; B=[2 2 2]; C=[3 3 3]; and suppose that I want to draw black lines c...

13 years ago | 2 answers | 0

2

answers

Question


Recommended way to plot spheres
Hi, I have the x, y, and z coordinates of the oxygen and hydrogen atoms in a water molecule. For example, the coordinates of...

13 years ago | 1 answer | 1

1

answer

Question


Ignoring header text when using dlmread or similar function
Hi, I have some data files in a format called .xvg. These files come from a program called Gromacs, which runs molecular dyn...

13 years ago | 2 answers | 0

2

answers

Question


Fast method to append or prepend rows of zeros
Hi, I have a 5001 by 762 matrix called posData. I would like to append and prepend, respectively, rows of zeros to posData....

13 years ago | 1 answer | 0

1

answer

Question


Extracting parts of a matrix implicitly (without storing the matrix)
Hi, Suppose I have a matrix [1 1 1; 2 2 2; 3 3 3] and suppose that I want to extract its second row. Of course I could do: ...

13 years ago | 2 answers | 0

2

answers

Question


Fast way to delete the last n rows of a matrix
Hi, I would like to be able to delete the last n rows of a matrix. I have found that this can be done in the following way. ...

13 years ago | 2 answers | 0

2

answers

Question


Threading part of a function over each element in a cell array
Hi, I would like to thread part of a function over each element in a cell array. I'm afraid I'm being totally non-descriptiv...

13 years ago | 1 answer | 0

1

answer

Question


Mapping a function over each cell in a cell array using arrayfun
Hi, I am trying to "map" a function over each cell in a cell array. For example, suppose that I have a cell array which is f...

13 years ago | 1 answer | 0

1

answer

Question


Using AND Operator in “if” statements
Hi, When I type the following code: if size([1 2 3])==size([4 5 6]) & size([4 5 6])==size([7 8 9]) 'yes' else 'no' ...

13 years ago | 2 answers | 3

2

answers

Question


Elegant way to extract part of a structure as an array
Hi, I would like to be able to extract part of a structure as an array. For example, suppose I create a simple structure: ...

13 years ago | 2 answers | 7

2

answers

Answered
Mapping a function across an array of structures
Hi, May I ask you a related question? What if I want to map a function across each row in an array. For example, the bu...

13 years ago | 0

Answered
Mapping a function across an array of structures
I am sorry, this does not appear to be working. Should I place the selectx function inside my delta function definition? When ...

13 years ago | 0

Question


Mapping a function across an array of structures
Hi, I have created an array of structures for the x, y, and z coordinates of particles at time t. For example, suppose I hav...

13 years ago | 3 answers | 0

3

answers