Product of each row with for-loop
Show older comments
Hi, I got a 6by6 matrix and I have to calculate the product in each row like in v = [1 2 3; 4 5 6], the product of row 1 should be 6 and row 2 should be 120. Here is my code, did I miss something?
v = magic(6)
save ('vec.mat')
load ('vec.mat')
[rows, columns] = size(v);
rowpro=1;
for row = 1 : rows;
for i = 1:row
rowpro = rowpro*i;
end
fprintf('The product of row %d is %d \n',row,rowpro)
end
Thanks
Answers (1)
Azzi Abdelmalek
on 8 Nov 2014
Edited: Azzi Abdelmalek
on 8 Nov 2014
v = [1 2 3; 4 5 6];
out=prod(v,2)
6 Comments
david Chan
on 8 Nov 2014
Azzi Abdelmalek
on 8 Nov 2014
rowpro = rowpro*v(row,i);
david Chan
on 8 Nov 2014
Azzi Abdelmalek
on 8 Nov 2014
Edited: Azzi Abdelmalek
on 9 Nov 2014
move the initialization rowpro=1; also, look at your for loop counter
david Chan
on 9 Nov 2014
Azzi Abdelmalek
on 9 Nov 2014
Sorry, I mean change the place
Categories
Find more on Loops and Conditional Statements 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!