How to convert each row of the matrix into a Character array, without using a for command?

1 次查看(过去 30 天)
Matlab code:
A=rand(1e3,2);%just an example
for i=1:size(A,1)
B{i}=num2str(A(i,:));
end
Question: The cost time of the code is related to the size of A. How can I get the B without the For command and spend as less time as possible?

采纳的回答

dpb
dpb 2019-4-3
Preallocate B may help just tad...
Alternatives to loop include
B=cellstr(num2str(A));
but what is end purpose for doing the conversion? Perhaps could avoid entirely??? The most time-saving optimization is the one that avoids doing the unneeded... :)
  3 个评论
dpb
dpb 2019-4-3
Show a small subset example with data set...I suspect you can use ismember or other logical addressing to solve the problem directly without the text step at all...but need an example to ensure we're on the same page.
Jian Shi
Jian Shi 2019-4-6
编辑:dpb 2019-4-6
Ok, I have tried to use ismember but it is like other lookup functions that waste too much time on finding my expected value in Z at fixed point in (X,Y). For example
%every row of A is different, it can be considered as some point in R^2;
A=[1 3;2 4;2 7;6 19];
%every element of B is different, it can be considered as the value under an one-to-one mapping f(x,y) on A;
AA=cellstr(num2str(A));
B=[6;5;1;9];
BB=num2cell(B);
M=containers.Map(AA,BB);
the scale of the example is small but the real problem is huge.
i want to find the corresponding values of some point in A at the same time with less time.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by