Sum of row and column #?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Say I ask the user to input the size of a square matrices, n.
And say I want each element of this matrix to be the sum of the row # it's in & the column # it's in. So, for n =2:
2 3
3 4
Is there some Matlab function I could use to calculate each of those elements and display the above as a matrix?
0 commentaires
Réponses (4)
John D'Errico
le 15 Fév 2018
Modifié(e) : John D'Errico
le 15 Fév 2018
Matt's answer of
result=(1:n).'+(1:n);
is the best way, at least in current versions of MATLAB, because it is most clear what it is doing. But this only applies in 2017 releases and beyond.
Other solutions are less clear, but pretty simple. For example, this should be almost as obvious:
[i,j] = meshgrid(1:n);
result = i + j;
Or
result = cumsum(ones(n),1) + cumsum(ones(n),2);
Or
result = repmat(1:n,n,1) + repmat(1:n,n,1).';
Any of these should be quite clear, and all are equally valid. If unclear still, then it really is time to start reading the getting started tutorials in MATLAB. If you do not follow what they did, then look at each piece of the code. See what it does for some value of n. Read the documentation, perhaps for meshgrid, repmat, bsxfun, cumsum, etc., as appropriate. You won't learn MATLAB until you start reading the documentation.
0 commentaires
Matt J
le 15 Fév 2018
Too bad hankel() isn't MEX-implemented. A MEX-optimized implementation of the following would be O(n),
result = hankel( 2:n+1,n+1:2*n)
0 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!