How can i assign a value for this type of datas?

1 view (last 30 days)
Hi,
I want to assign a value for a given vector with using a one rule. Assigned value will be named as x.
My reference vector is:
[6 5 4 3 2 1]
For ex., given vector is symbolized as A:
A=[NaN NaN 1 1 NaN NaN]
x should be equal to 4.
or if A equals to:
A=[1 1 1 1 1 1]
x=6
Finally, a last example:
A=[NaN NaN NaN 1 1 1]
x=3
Briefly, x value should be equal to leftmost 1's reflection in referance vector.
How can i perform this control?
Thx!

Accepted Answer

madhan ravi
madhan ravi on 25 Mar 2019
Edited: madhan ravi on 25 Mar 2019
V(find(A==1,1,'first')) % V is your referenced vector
  2 Comments
Alex Yande
Alex Yande on 25 Mar 2019
V(find(A,1,'first')) % V is your referenced vector
It works, but give me uncorrect result.
A=[NaN 1 1 1 NaN NaN]
V=[6 5 4 3 2 1]
V(find(A,1,'first'))
ans =
6
It must be equal to 5.
Alex Yande
Alex Yande on 25 Mar 2019
Your second code works wonderful!!
Thanks a lot.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!