Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 find 命令?,在负例和正例之间选择一个向量最大的数:
a=[-15 7]
选择最大的数字而不考虑符号
使用max,而不是find:
max
find
[vv ii] = max(abs(a)); result = a(ii)
请注意,第二个输出参数max给出了最大化元素的索引(或者它们中的第一个,如果有多个)。