Community Profile

photo

Christopher


Macquarie University

Con actividad desde 2014

Estadísticas

  • First Review
  • Thankful Level 3

Ver insignias

Content Feed

Ver por

Pregunta


Performance of cell arrays, multi-dimensional arrays, structure arrays, and multiple variables
I've found that the performance of cell Arrays, multi-dimensional arrays, and structure arrays are all far slower than the use o...

alrededor de 6 años hace | 1 respuesta | 1

1

respuesta

Pregunta


MEX file maker not working when using < thread > header
I've made a fast version of accumarray in C++ and am trying to make a MEX file for it, but it is not working. I can compile m...

más de 6 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Is it possible to avoid copy-on-write behavior in functions yet?
As I understand, MATLAB has used a system called 'copy-on-write' for function calls. So if you have a function of the form f...

más de 6 años hace | 3 respuestas | 3

3

respuestas

Pregunta


Performance of MATLAB instances over time
I've noticed for a long time that the performance of a matlab instance seems to decrease with use. I presently am seeing this ef...

más de 6 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Sharing Large Memory Variable in a parfor
I have a code which uses a very large variable of size [3 10 61 50 50 50 60], which is about 55 Gb. The form of the code is roug...

alrededor de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Fastest method of modifying elements of a matrix based on multiple indexes
I am trying to arrive at the fastest method of modifying the elements of a matrix based on more than 1 index for the elements in...

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How does Matlab use less memory after exceeding physical limit?
I have a code which normally requires about 17 GB of memory, since there is a matrix which is about 12+ GB which is continually ...

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Reduce memory requirement of some vectorized operations
In the following code, i perform some vectorized operations which happen to be highly memory intensive because my actual value o...

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


gather data from different sections of each column
Consider the code: totmods = 10000; numselect = 1000; A = rand(100,totmods); % numbers B = randi(90,10,1000)...

más de 8 años hace | 3 respuestas | 0

3

respuestas

Pregunta


parfor works on local computer but not on a cluster
My code has the following form: clear all rng('shuffle') runtables = importdata('runtable.mat'); % a 40000x22 table of...

más de 8 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Does matlab become slow and unusable when working in a folder with many files?
Matlab has recently become incredibly slow and virtually unusable recently. Particulary, functions such as importdata(sprin...

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


logical operations on particular matrix elements
I have the following code: numels = 7; numpts = 3; C = sparse(numpts,numels) A = randi(numels,[numpts,1]); B = r...

más de 8 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Optimising code to get matrix indices based on point coordinates
I have the code xnum = 600; xstp = 1/(xnum-1); xgrid = 0:xstp:1; ynum = 600; ystp = 1/(ynum-1); ygrid = 0:xstp...

más de 8 años hace | 2 respuestas | 0

2

respuestas

Pregunta


How to implement a parfor in place of a for loop?
I understand the idea behind what is and isn't allowed in a parfor loop, but I do not understand the practical application. I ha...

casi 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Colormap not working: is it too long?
When I use the following colormap, cmap1, I only get two colors displayed in my figure. Why does Matlab hate my colormap? c...

casi 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Need to get rid of an eval and loop
I have the code Fe = zeros(maxthick,numfiles); for i=1:numfiles eval(sprintf('tnum = numel(data%d.results(:,13));',i)...

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


creating strings with variables
I have to access many different files with slightly different names and instead of manually writing them in matlab I want to dyn...

alrededor de 9 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Can I speed up an ismember operation?
I have a list of 100 random numbers 1-10: numpoints = 100; gridnum = 10; grid_ind = randi(gridnum,[numpoints 1]); % 100 ...

alrededor de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Using Matlab in 4K resolution
I am using windows 8.1 and Matlab r2014a on a new 4K screen. One of the reasons for this is because I want to be able to view mo...

más de 9 años hace | 2 respuestas | 1

2

respuestas

Pregunta


Data lost in saved file
I have a code which periodically saves many .mat files. e.g.: save( filename, 'P_hist', 'O_hist', 'Osums_hist' ... ...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Can't append variables to large .mat files?
I am using R2013b. I have the code: save(savefilename, 'newP_hist', 'newO_hist', 'newE_hist', 'newt_hist'); save(savefilen...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


collect rows of a matrix having a desired number in the first row
If I have a matrix, what is the fastest way to collect the columns which satisfy a logical operation in the first row? So if ...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How can I quickly create movies?
I have a large code which generates several 120x120 matrices which I want to systematically record and make a movie out of. Bec...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Optomize a vectorized code
I have a vectorized code. It runs fast (I think), but I would benefit enormously from reducing its computational cost. I have a...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


How to close executable called with dos()
I am using dos('thermo.exe') to run the executable. This exe does something and then spits out a text file of results. ...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Pregunta


number of elements of each unique values in a matrix
I can use unique(A) to get an array of each unique value in the matrix A. However, how can I also get an array of the number of...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Create matrix with randomly distributed integers, with exact relative abundances
I want to create a matrix of randomly distributed integers between 0 and 4 (0, 1, 2, 3, or 4). However, I want the abundance of...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


problem getting correct indices of a matrix
I have the code: odif = find(o~=on); % element index: combos with O==O pdif = find(p(odif)~=pn...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Sum elements in matrix if equal to value in another element
I have the matrix OVEC, which consists of a number of column vectors with numbers How do I sum all the elements in each colum...

más de 9 años hace | 2 respuestas | 0

2

respuestas

Pregunta


Fast sampling every other element in a matrix
I have a matrix M. I want to delete every other column and every other row. However, I already know how to do this as: M ...

más de 9 años hace | 1 respuesta | 0

1

respuesta

Cargar más