Suppose I have a vector, say S=1:10, and a fixed number K=5. Is there a way to vectorize the following code?
v=zeros(1:10);
for i=1:10
if S(i)>K
v(i)=S(i)-K;
else
v(i)=0;
end
end
|
Suppose I have a vector, say S=1:10, and a fixed number K=5. Is there a way to vectorize the following code?
|
||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Just for educational purposes:
Note that this gives you some flexibility, you can easily replace the final |
|||
|