Last edited by a moderator: May 5, 2017

  • Thread starter Thread starter nothingatall
  • Start date Start date
  • Tags Tags
    Matlab Max Sum
AI Thread Summary
The discussion focuses on creating two MATLAB functions: one to find the maximum entry in a matrix and another to calculate the total sum of matrix values without using built-in functions. Participants emphasize the importance of understanding array indexing and looping in MATLAB for these tasks. They suggest referring to MATLAB's documentation for guidance on array operations and program control methods. Additionally, they recommend developing an algorithm or pseudocode before diving into implementation to facilitate the coding process.
nothingatall
Messages
19
Reaction score
0
1) function [p,q] = maxEntry(A)
% A is an m-by-n matrix.
%p and q are indices with the property that |A(p,q)|>=|A(i,j)|
% for all i and j that satisfy 1<=i<=m, 1<=j<=n.

2) function s = totalSum(A)
% A is an m-by-n matrix
% s is the sum of all the values in A

complete them without using built in functions.

3) I've tried to look these up on help but these are not helping. I've tried to create the matrix with an index but this is not working. I think i know how to do a for loop but should i know anything when referring to the function at hand??

Thanks
 
Physics news on Phys.org
These sound like homework, so perhaps a mod will be by to relocate this thread.

Both of these questions are intended to get you familiar with MATLAB's array indexing and looping. If you're not familiar with array indexing, the help documentation is quite helpful:
http://www.mathworks.com/help/techdoc/math/f1-85462.html

Having said that, for at least the summation problem, it's possible to avoid the indexing by using linear indexing instead of (row, column) type indexing. But since you still need it for the first, let's go with that.

Now, as for how to do looping, here's the Mathworks documentation page on various Program Control methods:
http://www.mathworks.com/help/techdoc/matlab_prog/brqy1c1-1.html

If you're new to programming, my advice is to first come up with the algorithm / pseudocode before the specific implementation. Do this here and we'll try to help you along.
 
Last edited by a moderator:

Similar threads

Replies
7
Views
2K
Replies
3
Views
1K
Replies
1
Views
2K
Replies
7
Views
2K
Replies
10
Views
2K
Replies
14
Views
4K
Replies
10
Views
2K
Back
Top