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 ?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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]
Akzeptierte Antwort
MathWorks Support Team
am 13 Jun. 2011
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!