Iterating over values in multiple arrays

6 次查看(过去 30 天)
Let's say I have an array A defined as
A = [0 2 5 7 8]
Let's say I haven array B defined as
B = linspace[0,10,100]
Now I want to perform an operation on each value in B that is greater than or equal to the previous value in A. For simplicity, let's just say subtraction.
Basically I want to perform the following operations (and store the results as an array):
(0-0)
(.1-0)
(.2-0)
...
(1.9-0)
(2-2)
(2.1-2)
...
(9.8-8)
(10-8)
Because of other code involved, I want to index over the values of A like so
n=length(A);
for j=1:n
x0 = A(j);
% Now I want to subtract each value in B minus the appropriate x0 and save all the results as an array
end
How could I accomplish the rest of the desired procedure?

回答(1 个)

Akira Agata
Akira Agata 2020-3-18
How about the following?
C = B'-A;
C = C(:);
  2 个评论
g
g 2020-3-18
This works for subtraction, but not general operations within the scheme provided.
Akira Agata
Akira Agata 2020-3-18
It's not clear for me.
Could you tell us more details on your problem and what the output should be or looks like?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by