Created
May 27, 2017 16:49
-
-
Save ksomemo/4885be72bd30b683321a5e7ce0c90bd5 to your computer and use it in GitHub Desktop.
max args in octave matrix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[max_values row_indices] = max(magic(5)); | |
[max_values col_index] = max(row_indices); | |
row_index = row_indices(col_index); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment