Problem 45174. Given a vector x, return vector y with all negative elements from the vector x.

Given a vector x, return vector y with all negative elements from the vector x if x has negative elements. Otherwise return 0. for example: x=[1 2 3 4 -5 -2] y=[-5 -2] x=[1 2 3] y=0

Solution Stats

74.75% Correct | 25.25% Incorrect
Last Solution submitted on Feb 16, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers65

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!