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.
请问有matlab代码减去两个向量值,其中一个值总是较大的吗?
例如;
A=[10 9 8 7 6 5 4 3 2 1]; B=[5 4 3 2 1 10 9 8 7 6];
我想减去这两个向量,其中被减数总是较大的,所以答案是:
[5 5 5 5 5 5 5 5 5 5]
我怎样才能做到这一点?
使用以下代码:abs(A-B)
abs(A-B)