Matrix subtraction every two adjacent column
이전 댓글 표시
Hello everyone,I have a matrix x with MxN = (3750X666) and I want to subtract every two adjacent column,normalize it and create a new matrix y= [x(:,n)-x(:,1:n-1))] ./ x(;,n), n start with 2nd column and end with N, how can I do it?
댓글 수: 4
Matt J
2021년 2월 12일
We covered this, I believe, in your almost identical question here,
MUHAMMAD SYAKIR YUSRI
2021년 2월 12일
편집: MUHAMMAD SYAKIR YUSRI
2021년 2월 12일
Here is the solution you were given. As you can see, it does 664 subtractions, which is exactly the number of pairs available (separated by a stride of 2) along the whole width of your matrix.
x=rand(3750,666);
y=(x(:,3:end)-x(:,1:end-2))./x(:,2:end-1);
whos y
MUHAMMAD SYAKIR YUSRI
2021년 2월 12일
답변 (2개)
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!