Is it possible to concatenate two numeric arrays such that the corresponding numbers in each matrix are now represented as a new number in MATLAB ?

12 次查看(过去 30 天)
I would like to concatenate two matrices A and B into a new matrix C as illustrated in the description below:
A = [1 2 3]
B = [4 5 6]
New matrix C should be:
C = [14 25 36]

采纳的回答

MathWorks Support Team
There is no direct function in MATLAB that can accomplish concatenating two numbers from an array in two matrices (index wise). The idea to concatenate two numbers per index from two matrices such that a resultant matrix has concatenated numbers is as follows:
a1 = [1 2 3]';
a2 = [4 5 6]';
% Convert both the numbers to strings
b1 = num2str(a1);
b2 = num2str(a2);
% Concatenate the two strings element wise
c1 = strcat(b1, b2);
% Convert the result back to a numeric matrix
result = str2num(c1);
Please note that concatenating two numbers based on their index is not supported as a basic programming feature.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

标签

尚未输入任何标签。

产品


版本

R2011a

Community Treasure Hunt

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

Start Hunting!

Translated by