Subtracting the first element of each row from the rest of the row ?

조회 수: 3 (최근 30일)
PIRIL
PIRIL 2014년 2월 21일
댓글: PIRIL 2014년 2월 21일
Hi all,
I have a matrix like A=[3.5,4.5;2.4,3.2]. I want to subtract the first element of each row from the rest of the row resulting in [0,1.5;0,0.7].
Many thanks !

채택된 답변

Andrei Bobrov
Andrei Bobrov 2014년 2월 21일
A=[3.5,4.5;2.4,3.2];
out = bsxfun(@minus,A,A(:,1));

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by