Problem 43607. Logical array indexing - part 1

Given an array A of size p x q , return an array Y of the same size such that the following conditions are satisfied.

(1) The non-zero elements should be greater than a given value 'n' .

(2) These non-zero entries in Y should have the same values as their corresponding elements in A

For example: Given A = [3 4 5 6 2 4 5 6 3 6] and n = 4 , return Y = [0 0 5 6 0 0 5 6 0 6]

Solution Stats

72.73% Correct | 27.27% Incorrect
Last Solution submitted on Oct 14, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers43

Suggested Problems

More from this Author1

Community Treasure Hunt

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

Start Hunting!