Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
teb11007 committed Sep 13, 2017
1 parent a080c18 commit 69d2af1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -10,9 +10,11 @@ for i=1:6;
j=1:6;
A_66(i,j)=i*j;
end
Average = mean(A_66(:))
Standard_Deviation = std(A_66(:))
fprintf('mean of A_66 = %1.2f\nstdev of A_66 = %1.2f\n',mean(A_66(:)),std(A_66(:)))
```
Outputs:
mean of A_66 = 12.25
stdev of A_66 = 9.07

#Problem 4
```MATLAB
Expand Down

0 comments on commit 69d2af1

Please sign in to comment.