How to generate H-matrix at every iterations using for loop i

조회 수: 2 (최근 30일)
How to generate H-matrix at every iterations using for loop
iterations=5000;% my iteration
H=sqrt(0.5)*(randn+1i*randn)*(1/sqrt(2));%rayleigh channel how to make it matrix

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 11월 1일
편집: KALYAN ACHARJYA 2022년 11월 1일
Hint: using For Loop
for i=1:5000
H=sqrt(0.5)*(randn+1i*randn)*(1/sqrt(2));
end
If you want to store the H in each iteration, use a cell array {} to store the iterated data, use the memory preallocation before use the array in the loop.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by