Clear Filters
Clear Filters

Write a MATLAB function that takes a square matrix a of size n x n. The function computes products of all elements in each row. It then adds all the products together and returns the sum as an output.

1 view (last 30 days)
Write a MATLAB function that takes a square matrix a of size n x n. The function computes products of all elements in each row. It then adds all the products together and returns the sum as an output.
  1 Comment
Steven Lord
Steven Lord on 18 Dec 2019
This sounds like a homework assignment. If it is, show us the code you've written to try to solve the problem and ask a specific question about where you're having difficulty and we may be able to provide some guidance.
If you aren't sure where to start because you're not familiar with how to write MATLAB code, I suggest you start with the MATLAB Onramp tutorial (https://www.mathworks.com/support/learn-with-matlab-tutorials.html) to quickly learn the essentials of MATLAB.
If you aren't sure where to start because you're not familiar with the mathematics you'll need to solve the problem, I recommend asking your professor and/or teaching assistant for help.

Sign in to comment.

Answers (1)

Vidhi Agarwal
Vidhi Agarwal on 2 Jun 2023
Edited: Rik on 2 Jun 2023
Please find the Code below:
function rowprod_sum = rowProductSum(a)
[row, col] = size(a);
sum = 0;
for i = 1:row
pro = 1;
for j = 1:col
pro = pro*a(i, j);
end
sum = sum + pro;
end
disp(sum);
end
this function provides you the final sum and display it in command pallet. function takes matrix as input.
  1 Comment
Rik
Rik on 2 Jun 2023
This time I edited your answer for you. Next time, please use the tools explained on this page to make your post more readable.
Also, why are you posting answers to such old thread? And why are you using sum as a variable name? You should also be aware that this code does not define the output argument.

Sign in to comment.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!