필터 지우기
필터 지우기

how to get this right?

조회 수: 1 (최근 30일)
riki singh
riki singh 2023년 1월 10일
댓글: Walter Roberson 2023년 1월 10일
x = rand(30) * 25;
y = rand(30) * -28;
z = complex(x, y);
Z=ifft2(z);
Z = ifft2(y,8,8);
Z=size(Z);
is it possible to convert 2 D matrix into 3 D matrix ?
once i get 3D matrix
then
A(a,b,c)=Z
a=(x^2+y^2+2*z)/2*x;
so now i want Z terms which is in Z(x,y,z) terms into A(a,b,c)
2021a version
  댓글 수: 1
Walter Roberson
Walter Roberson 2023년 1월 10일
Z=ifft2(z);
Z = ifft2(y,8,8);
Z=size(Z);
why do you overwrite the first Z calculation with the results of a different ifft2? And why do you overwrite the results of that with the size of the second ifft2?

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by