Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

matrix operation make matrix

조회 수: 2 (최근 30일)
Internazionale
Internazionale 2013년 4월 10일
마감: MATLAB Answer Bot 2021년 8월 20일
i have matrix A = rand(64,4), i want to process them to make new matrix where B = (K-A(:,1))*2 . k is multiply every 8, example A=1:8:64 so K=1 , A=2:8:64 so K=2 , A=3:8:64 so K=3, A=4:8:64 so K=4, A=5:8:64 so K=5, A=6:8:64 so K=2, A=7:8:64 so K=2, A=8:8:64 so K=2. how to find B ?

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2013년 4월 10일
A = rand(64,4);
K = reshape([(1:5)';2;2;2]*ones(1,8),[],1);
B = 2*(K - A(:,1));

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by