필터 지우기
필터 지우기

Tensor creation like "pageTensorprod"?

조회 수: 2 (최근 30일)
Adrien Leygue
Adrien Leygue 2023년 3월 23일
댓글: Adrien Leygue 2023년 3월 24일
I have two 3x3xN tensors (let's call them A and B) which I would like to combine into a 3x3x3x3xN tensor.
More specifically I want to compute : C_ijklm = A_ijm B_klm
right now I am reshaping A and B into 9x1xN and 1x9xN arrays and I then use pagemtimes (or simply .* with singleton expansion) to generate the 9x9xN which is finally reshaped.
Is there an easier way? The resulting code lacks readability in my opinion.
I have read the tensorprod documentation but I don't see how I could use it. I would need some kind of "pageTensorprod" i think.
Thanks for any advice.
Adrien.

채택된 답변

Matt J
Matt J 2023년 3월 23일
편집: Matt J 2023년 3월 23일
Is there an easier way? The resulting code lacks readability in my opinion.
Probably not, but regardless, readability shouldn't be the reason to look for another solution. You can hide the operations that look ugly to you in a function of your own.
  댓글 수: 1
Adrien Leygue
Adrien Leygue 2023년 3월 24일
I was expecting this answer. I just like to have things that are easy to read and therefore to maintain.
Thx

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by