So ima trying to get a matrix from a nested loop but i keep getting a one answer SIGMA in the workspace but thanks to the disp(SIGMA) i get a bunch of numbers in the command window. Why are they different?
Show older comments
Answers (1)
Walter Roberson
on 27 Nov 2017
Change
SIGMA=(x*y);
to
SIGMA(x+1,y+1) = (x*y);
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!