How using a loop to add up the same numbers in a matrix and store the numbers in a new matrix

조회 수: 2 (최근 30일)
m=[1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9]
for x=1:length(m)
How to compare the data in the matrix and get the same values and add them together then store it in a new matrix.
  댓글 수: 2
the cyclist
the cyclist 2022년 5월 20일
Do you mean you want to find repeated numbers, and add them?
For
m = [1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9]
would the output be
output = [2,4,6,8,10,12,14,16,18]
?
Can you give another example or two? Try to make the example a representative one.

댓글을 달려면 로그인하십시오.

답변 (1개)

Chandra
Chandra 2022년 5월 23일
Hi,
Here the code is shown such that the values stored are non repeatednon-repeated and addition of repeated values together
Please find the code below
m=[1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9];
%m = [1 2 4 56 3 35 6 1 2 3 4 2];
m1 = m;
b =0;
for x=1:length(m1)-1
for j = x+1:length(m1)
if j>length(m1)
break
end
if m1(x)==m1(j)
b = b+m(x);
m1(j) = '';
if j==x+1
j= j-1;
end
end
end
m2(x) = b;
if x<=length(m1)-1
b = m1(x+1);
end
end
m2 = m2(1:length(m1));
m2 %final output values are stored in m2
Refer to the following documentation for unique values that are not repeated:

카테고리

Help CenterFile Exchange에서 Modeling에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by