hi there,
I have an array lets say
A=[10 9 10; 1 2 3; 4 5 6]
How can create an array like this?
B=[10-1 9-2 10-3;10-1-4 9-2-5 10-3-6]
thanks in advance!
Nikolas

 채택된 답변

Star Strider
Star Strider 2017년 1월 21일
편집: Star Strider 2017년 1월 21일

1 개 추천

If I understand correctly what you are asking, this will work:
A=[10 9 10; 1 2 3; 4 5 6]
B = cumsum(-A(2:end,:))+A(1,:)
A =
10 9 10
1 2 3
4 5 6
B =
9 7 7
5 2 1

댓글 수: 9

Alternately
A(1,:) - cumsum(A(2:end,:))
My first mental version was indeed in terms of negating and then cumsum, but then I realized that wasn't necessary.
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2017년 1월 22일
Yeah that's exactly what i mean thanks a lot!!
Star Strider
Star Strider 2017년 1월 22일
Our pleasure!
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2017년 1월 22일
hi again, I tried it but I get an error "matrix dimensions must agree"! any ideas how to fix it? thanks
Star Strider
Star Strider 2017년 1월 22일
Please post your matrix and code. That error should not occur with the sort of matrix you originally posted.
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2017년 1월 22일
편집: Nikolas Spiliopoulos 2017년 1월 22일
>> A=[10 9 10; 1 2 3; 4 5 6] B = cumsum(-A(2:end,:))+A(1,:)
A =
10 9 10
1 2 3
4 5 6
Error using "+ " Matrix dimensions must agree.
The most recent versions of MATLAB do this minimal expansion automatically. Somewhat less recent versions require the bsxfun function to do the same operation.
This should work for you:
B = bsxfun(@minus, A(1,:), cumsum(A(2:end,:)));
(I tested it, and it gives the same result as our eariler code versions.)
Nikolas Spiliopoulos
Nikolas Spiliopoulos 2017년 1월 22일
ok got it, it works! thanks again mate..!!!
Star Strider
Star Strider 2017년 1월 22일
Our pleasure!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by