필터 지우기
필터 지우기

find sum of each row

조회 수: 1 (최근 30일)
Giannakis Stoukas
Giannakis Stoukas 2015년 3월 21일
댓글: Star Strider 2015년 3월 22일
Hello,i have a vector named dem(101) and a matrix routes(21,14) that has inside the numbers 1,2,3,4 etc. for example the first row of the matrix is the routes(1,14)=[1 21 25 26 28 30 31 29 24 23 22 48 1]. I want to save to a matrix named load(21) the sum of every route by the vector dem.For example i want the load(1)=sum(dem[1] dem[21] dem[25] dem[26]...... etc)

채택된 답변

Star Strider
Star Strider 2015년 3월 21일
I don’t understand your matrix structure, but this will do the calculation you described:
dem = randi(25, 1, 101);
routes = [1 21 25 26 28 30 31 29 24 23 22 48 1];
load = sum(dem(routes));
This illustrates the details of the addressing:
dem_routes = dem(routes); % Check
I include it for illustration only. It is not part of the code.
  댓글 수: 4
Giannakis Stoukas
Giannakis Stoukas 2015년 3월 22일
Yes i had one zero element without noticing it.Thank you for your respond
Star Strider
Star Strider 2015년 3월 22일
My pleasure!
It should work without the zero element.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by