필터 지우기
필터 지우기

How can I take summation of the multiplication of the first and last matrix of for loop where the matrix values also change in a nested for loop?

조회 수: 1 (최근 30일)
The attached picture contains the equation that needs to be simulated. I guess it can be done using nested loop but unable to do so.
  댓글 수: 1
Aastha Singla
Aastha Singla 2022년 11월 4일
x matrix can be random 2nx1 matrix. I assumed it to be all zeros because it will update using this equation
x(:, j) = A*x(:,j) + B*u(k) where A and B are predefined matrixes and u(k) is and random PAM4 signal given as input

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

답변 (1개)

Suvansh Arora
Suvansh Arora 2022년 11월 7일
As far as I understand, you are facing issues with Matrix multiplication, where the matrix itself changes in each iteration. Please follow the code snippet below to get an idea of how you can achieve it.
n = 3
H = 0
for i=1:n
% Random generation of x
x = rand(2*n,1)
H = H + sum(x(i) * x(i+n)');
fprintf("%d * %d = %d", x(i), x(i+n), H);
end
H
In case of any difficulties with matrix multiplication, I would suggest you to take the MATLAB onramp course: MATLAB Onramp - MATLAB & Simulink Tutorial This would help you in understanding the essential MATLAB concepts.
I hope the above information helps you.

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by