MATLAB find函数 [r,c] = find(R == max(R(:))); thetap = theta(c(1)); 哪个高手指点一下是什么意思啊

如题所述

[r,c] = find(R == max(R(:))); 检索R中最大元素所在的位置(行标r和列标c)
thetap = theta(c(1)); theta()是自定义函数
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-06-30
[r,c] = find(R == max(R(:))); 检索R中最大元素所在的位置(行标r和列标c)
thetap = theta(c(1)); theta()是自定义函数本回答被提问者采纳
相似回答