How to subtract only certain elements of a vector

12 次查看(过去 30 天)
If I have two vectors of the same length, is it possible to subtract only certain elements?
a = [1 4 6 7; 3 4 5 6]
b = [4 2 7 8; 2 6 7 8]
normally I would do:
a(1,:) - b(1,:)
But how do I the same subtraction but only with elements 1,2 and 4?
Is this possible to do? Which element I want to skip will change each time through my loop.
Thanks

采纳的回答

John D'Errico
John D'Errico 2022-5-5
a and b are not vectors in your question, they are arrays.
However, if you want to do this, nothing stops you from selecting the elements you wish to subtract, and do so.
a = [1 4 6 7; 3 4 5 6];
b = [4 2 7 8; 2 6 7 8];
ind = [1 2 4];
c = a(1,ind) - b(1,ind);
c
c = 1×3
-3 2 -1

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

产品


版本

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by