필터 지우기
필터 지우기

Understanding about stacking in MATLAB

조회 수: 3 (최근 30일)
charu shree
charu shree 2023년 3월 6일
댓글: charu shree 2023년 3월 7일
Hello all, I am trying to replicate the results of one of the research paper and in that it is mentioned that
Next, it is mentioned that matrix
My query is what does the term stacking indicates and how does the dimension of
Any help in this regard will be highly appreciated.

채택된 답변

Stephen23
Stephen23 2023년 3월 6일
편집: Stephen23 2023년 3월 6일
"My query is what does the term stacking indicates..."
MATLAB does not use the term "stacking" to refer to these kinds of operations, so you would have to ask the author of that paper. Some possibly related terms in MATLAB: concatenation, reshape, permute, transpose...
"...and how does the dimension of "
As far as I can tell, the author is simply vertically concatenting some 1x2N vectors into an Lx2N matrix.
Here are three ways to concatenate some 1x2N vectors vertically into an Lx2N matrix:
[d1;d2;d3]
cat(1,d1,d2,d3)
vertcat(d1,d2,d3)
Instead of directly concatenating them vertically, the author seems to concatenate their transposes horizontally and then transposes the entire resulting matrix. You would have to ask its author why.
  댓글 수: 1
charu shree
charu shree 2023년 3월 7일
Thanks a lot sir for your detailed answer.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by