How can I prealloate a comlex-valued matrix?

6 visualizaciones (últimos 30 días)
Hanna Liu
Hanna Liu el 12 de Sept. de 2019
Editada: Matthew Bayer el 22 de Sept. de 2021
The following code seems really slow, which I do allocating a matrix and then write some complex numbers in it:
tic,for kk = 1:1000
aa = (zeros(10000,500)); aa(:,300) = 1i * 3;
end;toc
The code is really slow:
Elapsed time is 42.463659 seconds.
Is there any way to accerlate this?
  4 comentarios
Hanna Liu
Hanna Liu el 12 de Sept. de 2019
I think I didn't really explain my problem clear enough in the original description. I am currently working on a function, in which I need to compute a large complex-valued matrix column by column. When I run the matlab profiler, I find out that the code I first write values in my matrix is super slow.
The code I provide in the orignal description is just a simplified example of my current problem. The second line of the following is much slower:
aa = (zeros(10000,500)); aa(:,300) = 3;
bb = (zeros(10000,500)); bb(:,300) = 1i * 3;
I wonder if there is some faster way to work with large complex-valued matrix.
Many thanks for your comments!
Bruno Luong
Bruno Luong el 12 de Sept. de 2019
Editada: Bruno Luong el 12 de Sept. de 2019
"When I run the matlab profiler, I find out that the code I first write values in my matrix is super slow. "
MATLAB has complicated memory management than you would think. It can allocate and copy a big array when you assign something even tiny (copy-on-write). It can do nothing when you think you allocate a big array, but then the first time you read something it will allocated (allocate-on-use).
It is crucial for you to describe how you allocate, if your matrix is "shared" by something else, etc... or the data flow of your algorithm so we can advide.
You cannot make a simplify your code and ask for the advise based on the simplification, especially "how to allocate faster than zeros(...)", no there is NO simple answer to such question, because the time depends what your program did before.

Iniciar sesión para comentar.

Respuesta aceptada

Steven Lord
Steven Lord el 12 de Sept. de 2019
I would probably use the 'like' syntax for the zeros function.
A = zeros(10000, 500, 'like', 1i);
  1 comentario
Matthew Bayer
Matthew Bayer el 22 de Sept. de 2021
Editada: Matthew Bayer el 22 de Sept. de 2021
This is better than the other answer, A = complex(zeros(10000,500)). I recently tried both and found the 'like' syntax was considerably faster. The complex() statement is presumably first creating the real array and then converting to a complex one, while the 'like' syntax just creates the complex array right away.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Historical Contests en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by