Solved
How to create a vector B that has only the values of vector A that are lower than a value?
If i have a vector A=(0.45, 1.78, 0.82, 0.95, 1.99, 1.12, 0.77), how to create a vector B that contains only B=(0.45, 0.82, 0.95, 0.77); only values that are lower than 1. The other values may be 0 for example.


