📄 maximum.m
字号:
function [val,r,c]=maximum(matice);
% computes the maximum of the matrix and returns the value and the position
% [value,row,column]=maximum(matice);
%
[a1,a2]=max(matice);
[val,c]=max(a1);
r=a2(c);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -