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 view (last 30 days)
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 Comment
Aastha Singla
Aastha Singla on 4 Nov 2022
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

Sign in to comment.

Answers (1)

Suvansh Arora
Suvansh Arora on 7 Nov 2022
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.

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!