필터 지우기
필터 지우기

Shifting vectors with the same matrix using 'for' loop

조회 수: 3 (최근 30일)
Afluo Raoual
Afluo Raoual 2021년 3월 15일
편집: Afluo Raoual 2021년 5월 21일
Dear members
I have a matrix of dimensions 10*20
And I have a vector of 50 bits
I have the main program that I use for my need. But I want use this program for each 20 part of this vector.
I want use 'for' loop firstly to use the red part of the matrix with 20 first bits of V , than to repeat the use of the other parts of matrix
So it's a gender of shifting each 10 bits of V with the same part of matrix.
  댓글 수: 2
David Hill
David Hill 2021년 3월 15일
What operation do you want to do with the matrix and V? I have no idea what your question is.
Afluo Raoual
Afluo Raoual 2021년 3월 15일
It's about decoding this vector using this matrix

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

채택된 답변

Jan
Jan 2021년 3월 15일
I'm not sure what you want to achieve. Maybe you can post the wanted output created by hand?
A bold guess:
V = randi([0,1], 50);
for k = 1:10:50 - 19
aV = V(k:k+19);
... Do what you want here
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by